2018-11-05 15:26:18 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"strict": true,
|
2018-12-18 14:43:23 +00:00
|
|
|
"noImplicitAny": false,
|
2018-11-05 15:26:18 +00:00
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
2019-07-18 14:39:39 +01:00
|
|
|
"strictPropertyInitialization": false,
|
2022-07-01 19:26:59 +01:00
|
|
|
"resolveJsonModule": true,
|
2022-04-07 12:04:24 +01:00
|
|
|
"useUnknownInCatchVariables": false, // TODO: reenable it later
|
2018-11-05 15:26:18 +00:00
|
|
|
"types": [
|
|
|
|
"webpack-env",
|
2022-02-15 18:18:19 +00:00
|
|
|
"jest",
|
|
|
|
"filesystem"
|
2018-11-05 15:26:18 +00:00
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"src/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"scripthost"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
2022-04-07 12:04:24 +01:00
|
|
|
"src/types/*.d.ts",
|
2018-11-05 15:26:18 +00:00
|
|
|
"tests/**/*.ts",
|
|
|
|
"tests/**/*.tsx"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2019-10-07 15:40:45 +01:00
|
|
|
"node_modules"
|
2018-11-05 15:26:18 +00:00
|
|
|
]
|
|
|
|
}
|