advent22/ui/tsconfig.json

31 lines
716 B
JSON
Raw Permalink Normal View History

2022-10-28 00:14:20 +00:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"sourceMap": true,
"baseUrl": ".",
2024-08-27 00:25:42 +00:00
"types": ["webpack-env", "mocha", "chai"],
2022-10-28 00:14:20 +00:00
"paths": {
2024-08-27 00:25:42 +00:00
"@/*": ["src/*"]
2022-10-28 00:14:20 +00:00
},
2024-08-27 00:25:42 +00:00
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2022-10-28 00:14:20 +00:00
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
2024-08-27 00:25:42 +00:00
"exclude": ["node_modules"]
2022-10-28 00:14:20 +00:00
}