2019-09-28 19:32:02 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"alwaysStrict": true,
|
2021-02-22 18:19:00 +01:00
|
|
|
"baseUrl": "src",
|
2021-02-07 16:27:51 +01:00
|
|
|
"esModuleInterop": true,
|
2019-12-18 11:47:52 +01:00
|
|
|
"jsx": "react",
|
2019-12-18 14:57:37 +01:00
|
|
|
"jsxFactory": "h",
|
2019-09-28 19:32:02 +02:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
2019-12-17 15:59:13 +01:00
|
|
|
"esnext",
|
|
|
|
"webworker"
|
2019-09-28 19:32:02 +02:00
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2019-12-18 17:14:20 +01:00
|
|
|
"paths": {
|
2023-09-20 13:58:03 +02:00
|
|
|
"~/*": ["./templates/assets/javascripts/*"],
|
|
|
|
"_/*": ["./overrides/assets/javascripts/*"]
|
2019-12-18 17:14:20 +01:00
|
|
|
},
|
2019-09-28 19:32:02 +02:00
|
|
|
"removeComments": false,
|
|
|
|
"sourceMap": true,
|
2021-08-30 09:11:43 +02:00
|
|
|
"skipLibCheck": true,
|
2019-09-28 19:32:02 +02:00
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"stripInternal": true,
|
2021-02-07 16:27:51 +01:00
|
|
|
"target": "es2015"
|
2019-09-28 19:32:02 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2023-09-20 13:58:03 +02:00
|
|
|
"src/overrides/assets/javascripts",
|
2023-09-20 14:11:10 +02:00
|
|
|
"src/templates/assets/javascripts",
|
2021-05-02 13:03:58 +02:00
|
|
|
"tools",
|
|
|
|
"typings"
|
2019-09-28 19:32:02 +02:00
|
|
|
]
|
|
|
|
}
|