naive-ui/tsconfig.json
2022-02-03 16:08:45 +08:00

25 lines
511 B
JSON

{
"compilerOptions": {
"paths": {
"naive-ui": ["./src"]
},
"strict": true,
"strictNullChecks": true,
"jsx": "react",
"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"
]
}
}