2019-07-16 08:40:01 +02:00
|
|
|
{
|
2020-03-03 23:59:19 +01:00
|
|
|
"compileOnSave": false,
|
2019-07-16 08:40:01 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"strict": true,
|
2020-09-07 07:07:05 +02:00
|
|
|
"declaration": true,
|
2021-02-14 20:56:43 +01:00
|
|
|
"jsx": "react",
|
2019-07-16 08:40:01 +02:00
|
|
|
"strictNullChecks": true,
|
2023-01-02 20:13:45 +01:00
|
|
|
"types": ["node", "jest", "express", "@testing-library/jest-dom"],
|
2019-09-26 18:22:14 +02:00
|
|
|
"resolveJsonModule": true,
|
2022-03-27 21:42:52 +02:00
|
|
|
// "preserveSymlinks": true,
|
2019-07-16 08:40:01 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-09-03 21:15:29 +02:00
|
|
|
"esModuleInterop": true
|
2019-07-16 08:40:01 +02:00
|
|
|
},
|
2022-10-10 08:00:09 +02:00
|
|
|
"include": ["src/**/*.ts", "types/*.d.ts"],
|
2020-09-17 06:48:16 +02:00
|
|
|
"exclude": [
|
|
|
|
"**/build",
|
|
|
|
"node_modules",
|
|
|
|
"**/node_modules",
|
|
|
|
"**/coverage",
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/test",
|
|
|
|
"**/__tests__",
|
|
|
|
"**/*.test.ts"
|
|
|
|
]
|
2019-07-16 08:40:01 +02:00
|
|
|
}
|