fileserver/frontend/tsconfig.json

20 lines
389 B
JSON
Raw Permalink Normal View History

2022-08-17 19:59:51 +00:00
{
2022-08-31 12:28:35 +00:00
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strictPropertyInitialization": false,
"paths": {
"@/*": ["./src/*"]
}
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
2022-08-17 19:59:51 +00:00
}