2022-01-05 10:41:29 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2017",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"types": [
|
|
|
|
"jest",
|
2022-01-07 09:44:08 +01:00
|
|
|
"node",
|
2022-01-05 10:41:29 +01:00
|
|
|
"@cloudflare/workers-types"
|
2022-04-20 07:06:04 +02:00
|
|
|
],
|
2022-01-05 10:41:29 +01:00
|
|
|
},
|
|
|
|
"include": [
|
2022-04-20 07:06:04 +02:00
|
|
|
"src/**/*",
|
2022-01-05 10:41:29 +01:00
|
|
|
"src/**/*.test.ts"
|
2022-04-20 07:06:04 +02:00
|
|
|
],
|
2022-02-01 14:15:00 +01:00
|
|
|
}
|