cloudflare/d1-northwind
Publicmirrored fromhttps://github.com/cloudflare/d1-northwindAvailable
tsconfig.json
18lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "esnext", |
| 4 | "lib": ["esnext"], |
| 5 | "alwaysStrict": true, |
| 6 | "strict": true, |
| 7 | "noEmitOnError": true, |
| 8 | "moduleResolution": "node", |
| 9 | "experimentalDecorators": true, |
| 10 | "outDir": "tscOutDir", |
| 11 | "preserveConstEnums": true, |
| 12 | "esModuleInterop": true, |
| 13 | "types": ["@cloudflare/workers-types"] |
| 14 | }, |
| 15 | "include": ["worker"], |
| 16 | "exclude": ["node_modules", "dist"] |
| 17 | } |
| 18 | |
| 19 | |