20 lines
469 B
JSON
20 lines
469 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "es2021",
|
||
|
|
"lib": ["es2021", "webworker"],
|
||
|
|
"module": "es2022",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"types": ["@cloudflare/workers-types"],
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"allowJs": true,
|
||
|
|
"checkJs": false,
|
||
|
|
"noEmit": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"strict": true,
|
||
|
|
"skipLibCheck": true
|
||
|
|
},
|
||
|
|
"include": ["src"]
|
||
|
|
}
|