17 lines
370 B
JSON
17 lines
370 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2022"],
|
|
"types": ["@cloudflare/workers-types"],
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|