28 lines
488 B
JSON
28 lines
488 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"components.d.ts",
|
|
"auto-imports.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.vue",
|
|
"src/**/*.json"
|
|
],
|
|
"exclude": [
|
|
"src/**/__tests__/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"target": "ESNext",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowImportingTsExtensions": true,
|
|
"emitDeclarationOnly": true
|
|
},
|
|
} |