2022-01-05 10:41:29 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-09-15 02:56:46 +02:00
|
|
|
"target": "ES2020",
|
2022-01-05 10:41:29 +01:00
|
|
|
"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,
|
2022-07-01 03:30:43 +02:00
|
|
|
"strictPropertyInitialization": true,
|
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-06-07 12:03:42 +02:00
|
|
|
"jsx": "react",
|
2022-06-13 02:25:27 +02:00
|
|
|
"jsxFactory": "jsx",
|
2022-06-12 01:20:31 +02:00
|
|
|
"jsxFragmentFactory": "Fragment",
|
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
|
|
|
}
|