2019-07-16 08:40:01 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2019-09-26 18:22:14 +02:00
|
|
|
"resolveJsonModule": true,
|
2023-02-14 22:20:11 +01:00
|
|
|
"skipLibCheck": true,
|
2022-11-22 18:35:47 +01:00
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./build",
|
2019-07-16 08:40:01 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-01-09 20:51:50 +01:00
|
|
|
"esModuleInterop": true
|
2019-07-16 08:40:01 +02:00
|
|
|
},
|
2022-01-09 20:51:50 +01:00
|
|
|
"exclude": ["node_modules", "**/*.spec.ts"],
|
2022-11-22 18:35:47 +01:00
|
|
|
"include": ["src/**/*.ts", "types/*.d.ts"]
|
2019-07-16 08:40:01 +02:00
|
|
|
}
|