2022-01-05 10:41:29 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-05-30 14:59:38 +02:00
|
|
|
"target": "es2020",
|
2022-01-05 10:41:29 +01:00
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
2022-05-19 02:29:09 +02:00
|
|
|
"moduleResolution": "Node",
|
2022-01-05 10:41:29 +01:00
|
|
|
"outDir": "./dist",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strictPropertyInitialization": false,
|
2022-05-27 10:22:39 +02:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2022-01-05 10:41:29 +01:00
|
|
|
"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-05-19 02:29:09 +02:00
|
|
|
"src/**/*.ts",
|
2022-05-27 10:28:07 +02:00
|
|
|
"src/**/*.mts",
|
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
|
|
|
}
|