cloudflare/d1-northwind

Public

mirrored fromhttps://github.com/cloudflare/d1-northwindAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
89fb3197f63570a24a1ef18f92a246a1869fe29e

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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