ffffng/frontend/tsconfig.json

25 lines
643 B
JSON
Raw Normal View History

2022-02-22 15:39:39 +01:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
},
2022-05-26 13:58:01 +02:00
"target": "es2018",
"lib": ["es2018"],
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
"emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
2022-02-22 15:39:39 +01:00
},
"references": [
{
"path": "./tsconfig.vite-config.json"
},
{
"path": "./tsconfig.vitest.json"
}
]
}