OpenDTU-old/webapp/tsconfig.json
2023-04-24 20:31:24 +02:00

25 lines
476 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"lib": ["ES2021", "DOM"],
"moduleResolution": "Node",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}