web/tsconfig.json

44 lines
772 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": [
2021-12-14 07:39:52 +00:00
"webpack-env",
"jest"
2021-05-23 13:01:17 +00:00
],
"paths": {
"@/*": [
"src/*"
]
},
"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"
]
}