Skip to content

Commit d5fcd7c

Browse files
Sqaush: add worker/tsconfig.json.
1 parent 92e4217 commit d5fcd7c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

worker/tsconfig.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)