ovdashboard/ui/tsconfig.json

34 lines
748 B
JSON
Raw Normal View History

2022-09-09 16:23:04 +00:00
{
2023-04-05 17:07:03 +00:00
"vueCompilerOptions": {
"target": 2.7
},
2022-09-09 16:23:04 +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": ".",
2023-10-26 22:34:38 +00:00
"types": ["webpack-env"],
2022-09-09 16:23:04 +00:00
"paths": {
2023-10-26 22:34:38 +00:00
"@/*": ["src/*"]
2022-09-09 16:23:04 +00:00
},
2023-10-26 22:34:38 +00:00
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2022-09-09 16:23:04 +00:00
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
2023-10-26 22:34:38 +00:00
"exclude": ["node_modules"]
}