25 lines
650 B
JSON
25 lines
650 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
|
|
"exclude": ["src/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
"target": "es2018",
|
|
"lib": ["es2018", "DOM"],
|
|
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
|
|
"emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
|
|
},
|
|
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.vite-config.json"
|
|
},
|
|
{
|
|
"path": "./tsconfig.vitest.json"
|
|
}
|
|
]
|
|
}
|