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,
|
2022-04-17 19:42:22 +08:00
|
|
|
"jsx": "preserve",
|
2021-01-16 15:25:28 +08:00
|
|
|
"jsxFactory": "h",
|
|
|
|
"jsxFragmentFactory": "Fragment",
|
2022-02-03 16:08:45 +08:00
|
|
|
"noImplicitAny": true,
|
2022-01-05 01:44:22 +08:00
|
|
|
"noUnusedLocals": false,
|
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-05-19 00:59:06 +08:00
|
|
|
"target": "ES6",
|
2021-10-27 02:23:24 +08:00
|
|
|
"esModuleInterop": true,
|
2022-04-19 00:48:50 +08:00
|
|
|
"lib": ["ESNext", "DOM"]
|
2021-01-13 23:14:58 +08:00
|
|
|
}
|
2022-04-19 00:48:50 +08:00
|
|
|
}
|