naive-ui/tsconfig.json
2022-04-19 00:48:50 +08:00

23 lines
497 B
JSON

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