naive-ui/tsconfig.json
2024-07-12 00:48:52 +08:00

24 lines
530 B
JSON

{
"compilerOptions": {
"composite": true,
"target": "ES6",
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"lib": ["ESNext", "DOM"],
"module": "ES6",
"moduleResolution": "Node",
"paths": {
"naive-ui": ["./src"]
},
"types": ["vue/jsx", "jest"],
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
}
}