-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) 路 753 Bytes
/
Copy pathtsconfig.json
File metadata and controls
29 lines (29 loc) 路 753 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
28
29
{
"extends": [
"@tsconfig/node26/tsconfig.json",
"@tsconfig/strictest/tsconfig.json",
"@tsconfig/node-ts/tsconfig.json"
],
"compilerOptions": {
// Output
"noEmit": true,
// Modules
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"esModuleInterop": true,
"verbatimModuleSyntax": true,
// Lessen strictness
"noImplicitReturns": false,
"noPropertyAccessFromIndexSignature": false,
"exactOptionalPropertyTypes": false,
// Extra types
"types": [
"@total-typescript/ts-reset",
"@cloudflare/vitest-pool-workers/types",
"temporal-polyfill-lite/global"
],
"lib": ["esnext"]
},
"include": ["./", "./worker-configuration.d.ts"]
}