mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
23 lines
582 B
JSON
23 lines
582 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"lib": ["es2021"],
|
|
"jsx": "react-jsx",
|
|
"module": "es2022",
|
|
"moduleResolution": "Bundler",
|
|
"types": ["@cloudflare/workers-types/2023-07-01"],
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["test"],
|
|
"include": ["worker-configuration.d.ts", "src/**/*.ts"]
|
|
}
|