2021-01-13 23:14:58 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-02-10 20:35:50 +08:00
|
|
|
"paths": {
|
|
|
|
"naive-ui": ["./src"]
|
|
|
|
},
|
2021-01-13 23:14:58 +08:00
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2021-01-16 15:25:28 +08:00
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "h",
|
|
|
|
"jsxFragmentFactory": "Fragment",
|
2021-01-13 23:14:58 +08:00
|
|
|
"module": "ES6",
|
|
|
|
"moduleResolution": "Node",
|
2021-02-03 00:48:31 +08:00
|
|
|
"declaration": true,
|
2021-02-05 14:01:26 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-02-10 20:35:50 +08:00
|
|
|
"composite": true,
|
2021-01-13 23:14:58 +08:00
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|