naive-ui/tsconfig.json

25 lines
514 B
JSON
Raw Normal View History

{
"compilerOptions": {
2021-02-10 20:35:50 +08:00
"paths": {
"naive-ui": ["./src"]
},
"strict": true,
"strictNullChecks": true,
2022-04-17 19:42:22 +08:00
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
2022-02-03 16:08:45 +08:00
"noImplicitAny": true,
2022-01-05 01:44:22 +08:00
"noUnusedLocals": false,
"module": "ES6",
"moduleResolution": "Node",
2021-02-03 00:48:31 +08:00
"declaration": true,
"forceConsistentCasingInFileNames": true,
2021-02-10 20:35:50 +08:00
"composite": true,
2021-05-19 00:59:06 +08:00
"target": "ES6",
"esModuleInterop": true,
"lib": [
"ESNext",
"DOM"
]
}
}