mirror of
https://github.com/un-pany/v3-admin-vite.git
synced 2025-04-22 03:49:19 +08:00
30 lines
681 B
JSON
30 lines
681 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
/** https://vitejs.cn/guide/features.html#typescript-compiler-options */
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
/** https://vitejs.cn/guide/features.html#typescript-compiler-options */
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"skipLibCheck": true,
|
|
"types": ["vite/client"]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"vite.config.ts"
|
|
]
|
|
}
|