-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
tsconfig.json
28 lines (28 loc) · 877 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "src",
"declaration": true,
"sourceMap": true,
"esModuleInterop": true,
"inlineSourceMap": false,
"lib": ["esnext", "dom", "dom.iterable"],
"listEmittedFiles": false,
"listFiles": false,
"noFallthroughCasesInSwitch": true,
"pretty": true,
// "moduleResolution": "nodeNext", // disabled to be compatible with module: "esnext"
// "resolveJsonModule": true, // disabled to be compatible with module: "esnext"
"rootDir": "src",
"skipLibCheck": true,
"strict": true,
"traceResolution": false,
"outDir": "",
"target": "esnext",
"module": "esnext",
"types": ["@cloudflare/workers-types", "@types/node"]
},
"exclude": ["node_modules", "dist", "**/*.spec.ts", "examples"],
"include": ["src"]
}