Files
release11-tools/Frontend/tsconfig.json
Adam Bem 7d0cb03bf5 Implemented basic Vue.js frontend (#222)
Co-authored-by: Adam Bem <adam.bem@zoho.eu>
Co-authored-by: widlam <mikolaj.widla@gmail.com>
Reviewed-on: #222
Reviewed-by: Mikolaj Widla <widlam@noreply.example.com>
2023-06-14 11:25:59 +02:00

28 lines
498 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@components/*":["./src/components/*"],
"@views/*":["./src/views/*"],
}
},
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.app.json"
}
],
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": ["node_modules"],
}