web/tsconfig.json

44 lines
772 B
JSON
Raw Normal View History

2021-05-23 15:01:17 +02:00
{
"compilerOptions": {
2021-05-24 16:19:37 +02:00
"target": "es5",
2021-05-23 15:01:17 +02:00
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
2021-12-14 08:39:52 +01:00
"webpack-env",
"jest"
2021-05-23 15:01:17 +02:00
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
2021-08-08 01:46:19 +02:00
],
"resolveJsonModule": true
2021-05-23 15:01:17 +02:00
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}