advent22/ui/_legacy/tsconfig.json

22 lines
493 B
JSON
Raw Normal View History

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"experimentalDecorators": true,
2026-02-21 19:24:09 +00:00
"lib": ["es2020", "dom", "dom.iterable", "es2022.object", "es2023.array"],
// "moduleResolution": "node",
// "sourceMap": true,
"baseUrl": ".",
2026-02-21 19:24:09 +00:00
"types": ["webpack-env", "mocha", "chai"],
"paths": {
2026-02-21 19:24:09 +00:00
"@/*": ["src/*"]
}
},
"include": [
"src/**/*.vue",
"src/**/*.ts",
// "src/**/*.tsx",
2026-02-21 19:24:09 +00:00
"tests/**/*.ts"
// "tests/**/*.tsx",
2026-02-21 19:24:09 +00:00
]
}