mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2026-02-25 10:30:16 +00:00
33 lines
574 B
JSON
33 lines
574 B
JSON
|
|
{
|
||
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"lib": [
|
||
|
|
"es2020",
|
||
|
|
"dom",
|
||
|
|
"dom.iterable",
|
||
|
|
"es2022.object",
|
||
|
|
"es2023.array",
|
||
|
|
],
|
||
|
|
// "moduleResolution": "node",
|
||
|
|
// "sourceMap": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"types": [
|
||
|
|
"webpack-env",
|
||
|
|
"mocha",
|
||
|
|
"chai",
|
||
|
|
],
|
||
|
|
"paths": {
|
||
|
|
"@/*": [
|
||
|
|
"src/*",
|
||
|
|
]
|
||
|
|
},
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.vue",
|
||
|
|
"src/**/*.ts",
|
||
|
|
// "src/**/*.tsx",
|
||
|
|
"tests/**/*.ts",
|
||
|
|
// "tests/**/*.tsx",
|
||
|
|
],
|
||
|
|
}
|