sba-website/tsconfig.json
2023-09-17 17:48:51 -04:00

29 lines
472 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"env.d.ts",
"src/**/*",
"src/**/*.vue"
],
"compilerOptions": {
"baseUrl": ".",
"target": "ES2022",
"lib": [
"ES2022",
"DOM"
],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"paths": {
"@/*": [
"./src/*"
]
},
"ignoreDeprecations": "5.0"
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}