sba-website/tsconfig.json
2023-10-02 16:16:58 -05:00

30 lines
502 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",
"esModuleInterop": true,
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}