blob: a8b10a60dbc2428ad09815970f366f0fceed3092 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | {
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"lib": ["ES2022"],
"types": ["@cloudflare/workers-types"],
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*.ts"]
}
|