2019-10-02 13:35:50 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-10-11 23:50:03 +02:00
|
|
|
"outDir": "./dist/",
|
2021-11-28 22:49:16 +01:00
|
|
|
"target": "esnext",
|
2021-03-14 02:58:37 +01:00
|
|
|
"moduleResolution": "node",
|
2021-08-29 14:59:21 +02:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2021-03-14 02:58:37 +01:00
|
|
|
"resolveJsonModule": true,
|
2021-08-29 14:59:21 +02:00
|
|
|
"esModuleInterop": true,
|
2021-03-14 02:58:37 +01:00
|
|
|
"jsx": "preserve",
|
2021-03-14 01:34:04 +01:00
|
|
|
"plugins": [{ "name": "typescript-plugin-css-modules" }]
|
2019-10-02 13:35:50 +02:00
|
|
|
},
|
|
|
|
"exclude": ["node_modules", "public", ".cache", "*.js"],
|
2021-02-28 04:09:56 +01:00
|
|
|
"include": ["./src/**/*", "./scripts/*.ts", "./jest/**/*"]
|
2019-10-02 13:35:50 +02:00
|
|
|
}
|