web/tsconfig.json

26 lines
676 B
JSON
Raw Normal View History

2021-05-23 13:01:17 +00:00
{
"compilerOptions": {
2021-05-24 14:19:37 +00:00
"target": "es5",
2021-05-23 13:01:17 +00: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": ["webpack-env", "jest"],
2021-05-23 13:01:17 +00:00
"paths": {
"@/*": ["src/*"]
2021-05-23 13:01:17 +00:00
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
2021-08-07 23:46:19 +00:00
"resolveJsonModule": true
2021-05-23 13:01:17 +00:00
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
"exclude": ["node_modules"]
2021-05-23 13:01:17 +00:00
}