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 · modepreview

{
    "compilerOptions": {
        "target": "esnext",
        "lib": ["esnext"],
        "alwaysStrict": true,
        "strict": true,
        "noEmitOnError": true,
        "moduleResolution": "node",
        "experimentalDecorators": true,
        "outDir": "tscOutDir",
        "preserveConstEnums": true,
        "esModuleInterop": true,
        "types": ["@cloudflare/workers-types"]
    },
    "include": ["worker"],
    "exclude": ["node_modules", "dist"]
}