2022-04-20 22:40:26 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
2022-04-20 23:48:58 +08:00
|
|
|
/** https://vitejs.cn/guide/features.html#typescript-compiler-options */
|
2022-04-20 22:40:26 +08:00
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
|
|
|
"resolveJsonModule": true,
|
2022-04-20 23:48:58 +08:00
|
|
|
/** https://vitejs.cn/guide/features.html#typescript-compiler-options */
|
2022-04-20 22:40:26 +08:00
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
2022-04-20 23:15:39 +08:00
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom"
|
|
|
|
],
|
2022-04-20 23:48:58 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"types": ["vite/client"]
|
2022-04-20 22:40:26 +08:00
|
|
|
},
|
2022-04-20 23:15:39 +08:00
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.d.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"vite.config.ts"
|
|
|
|
]
|
2022-04-20 23:48:58 +08:00
|
|
|
}
|