tsconfig优化
This commit is contained in:
parent
8b8c3c3405
commit
4a4577dc9d
@ -1,25 +1,26 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"exclude": ["node_modules"],
|
||||||
"importHelpers": true,
|
"compilerOptions": {
|
||||||
"strict": true,
|
"noImplicitAny": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"importHelpers": true,
|
||||||
"downlevelIteration":true,
|
"strict": true,
|
||||||
"outDir": "dist/compiled",
|
"forceConsistentCasingInFileNames": true,
|
||||||
"baseUrl": "./",
|
"downlevelIteration": true,
|
||||||
"allowSyntheticDefaultImports": true,
|
"outDir": "dist/compiled",
|
||||||
"allowJs": true,
|
"baseUrl": "./",
|
||||||
"jsx": "preserve",
|
"allowSyntheticDefaultImports": true,
|
||||||
"moduleResolution": "node",
|
"allowJs": true,
|
||||||
"module": "ES2022",
|
"jsx": "preserve",
|
||||||
"lib": ["ES2020", "dom"],
|
"moduleResolution": "node",
|
||||||
"declaration": true,
|
"module": "ES2022",
|
||||||
"paths": {
|
"lib": ["ES2020", "dom"],
|
||||||
"@": ["src"],
|
"declaration": true,
|
||||||
"@/*": ["src/*"],
|
"paths": {
|
||||||
"/@/*": ["src/*"],
|
"@": ["src"],
|
||||||
"vue": ["node_modules/vue"],
|
"@/*": ["src/*"],
|
||||||
"tslib" : ["node_modules/tslib/tslib.d.ts"]
|
"/@/*": ["src/*"],
|
||||||
}
|
"vue": ["node_modules/vue"],
|
||||||
|
"tslib": ["node_modules/tslib/tslib.d.ts"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user