tsconfig.json•563 B
{
"compilerOptions": {
"target": "ES2021",
"lib": ["ES2021"],
"module": "ESNext",
"moduleResolution": "bundler",
"types": ["@cloudflare/workers-types"],
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noEmit": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}