advent22/ui/tsconfig.json

33 lines
574 B
JSON
Raw Normal View History

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