naive-ui/tsconfig.json

21 lines
405 B
JSON
Raw Normal View History

{
"compilerOptions": {
2021-02-10 20:35:50 +08:00
"paths": {
"naive-ui": ["./src"]
},
"strict": true,
"strictNullChecks": true,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"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,
"lib": [
"ESNext",
"DOM"
]
}
}