-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 653 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"noImplicitAny": true,
"strictNullChecks": true,
"target": "es2022",
"module": "node16",
"moduleResolution": "node16",
"baseUrl": ".",
"paths": {
"@sveltejs/kit": ["../kit/types/index"]
},
// taken from the Cloudflare Workers TypeScript template https://github.com/cloudflare/workers-sdk/blob/main/packages/create-cloudflare/templates/hello-world/ts/tsconfig.json
"lib": ["es2021"],
"types": ["@cloudflare/workers-types"]
},
"include": [
"index.js",
"utils.js",
"utils.spec.js",
"test/utils.js",
"internal.d.ts",
"src/worker.js"
]
}