naive-ui/tsconfig.json

24 lines
530 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
2024-07-12 00:48:52 +08:00
"composite": true,
"target": "ES6",
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"lib": ["ESNext", "DOM"],
"module": "ES6",
"moduleResolution": "Node",
2021-02-10 20:35:50 +08:00
"paths": {
"naive-ui": ["./src"]
},
2024-07-12 00:48:52 +08:00
"types": ["vue/jsx", "jest"],
"strict": true,
"strictNullChecks": true,
2022-02-03 16:08:45 +08:00
"noImplicitAny": true,
"noUnusedLocals": true,
2021-02-03 00:48:31 +08:00
"declaration": true,
"esModuleInterop": true,
2024-07-12 00:48:52 +08:00
"forceConsistentCasingInFileNames": true
}
2022-04-19 00:48:50 +08:00
}