You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
637 B
26 lines
637 B
{
|
|
"exclude": ["node_modules"],
|
|
"compilerOptions": {
|
|
"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"]
|
|
}
|
|
}
|
|
}
|
|
|