-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (43 loc) · 996 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"compilerOptions": {
"outDir": "./dist",
"target": "ES2020",
"module": "ESNext",
"lib": [
"ES2020",
"WebWorker"
],
"isolatedModules": true,
"importsNotUsedAsValues": "error",
"alwaysStrict": true,
"strict": true,
"preserveConstEnums": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"sourceMap": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": true,
"types": [
"@cloudflare/workers-types",
],
"rootDirs": ["./api","./test"],
"skipLibCheck": true,
"noImplicitAny": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "./types",
"noImplicitThis": true
},
"include": [
"src/images/bindings.d.ts",
"./api/*.ts",
"./api/*.d.ts",
"./api/**/*.ts",
"./node_modules/@cloudflare/workers-types/index.d.ts", "test/handler.test.ts" ],
"exclude": [
"transpiled/",
"node_modules/",
"dist/"
]
}