mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 08:06:00 +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"]
|
|
}
|