We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92e4217 commit d5fcd7cCopy full SHA for d5fcd7c
worker/tsconfig.json
@@ -0,0 +1,20 @@
1
+{
2
+ "compilerOptions": {
3
+ "target": "ES2021",
4
+ "lib": ["ES2021"],
5
+ "module": "ESNext",
6
+ "moduleResolution": "bundler",
7
+ "resolveJsonModule": true,
8
+ "allowJs": true,
9
+ "checkJs": false,
10
+ "noEmit": true,
11
+ "isolatedModules": true,
12
+ "allowSyntheticDefaultImports": true,
13
+ "forceConsistentCasingInFileNames": true,
14
+ "strict": true,
15
+ "skipLibCheck": true,
16
+ "types": ["@cloudflare/workers-types"]
17
+ },
18
+ "include": ["./**/*.ts"],
19
+ "exclude": ["node_modules"]
20
+}
0 commit comments