mirror of
https://gitee.com/myxzgzs/boyue-kfcode-hasfj.git
synced 2025-06-21 07:09:37 +08:00
30 lines
725 B
JSON
30 lines
725 B
JSON
{
|
|
"exclude": ["node_modules"],
|
|
"compilerOptions": {
|
|
"types":["vite/client"],
|
|
"target": "ES2020",
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny":true,
|
|
"importHelpers": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"downlevelIteration":true,
|
|
"outDir": "dist/compiled",
|
|
"baseUrl": "./",
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"module": "ES2022",
|
|
"lib": ["ES2020", "dom"],
|
|
"declaration": true,
|
|
"paths": {
|
|
"@": ["src"],
|
|
"@/*": ["src/*"],
|
|
"/@/*": ["src/*"],
|
|
"vue": ["node_modules/vue"],
|
|
"tslib" : ["node_modules/tslib/tslib.d.ts"]
|
|
}
|
|
}
|
|
}
|