-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathtsconfig.json
40 lines (40 loc) · 1.19 KB
/
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
{
"compilerOptions": {
"strict": true,
"allowJs": true,
"target": "esnext",
"module": "esnext",
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"lib": ["esnext", "dom.iterable", "webworker"],
"strictFunctionTypes": true,
"moduleResolution": "node",
"strictNullChecks": true,
"noImplicitThis": true,
"noImplicitAny": true,
"alwaysStrict": true,
"baseUrl": "./src",
"checkJs": true,
"paths": {
"worktop": ["./router.d.ts", "./router.ts"],
"worktop/cache": ["./cache.d.ts", "./cache.ts"],
"worktop/base64": ["./base64.d.ts", "./base64.ts"],
"worktop/crypto": ["./crypto.d.ts", "./crypto.ts"],
"worktop/request": ["./request.d.ts", "./request.ts"],
"worktop/response": ["./response.d.ts", "./response.ts"],
"worktop/cookie": ["./cookie.d.ts", "./cookie.ts"],
"worktop/utils": ["./utils.d.ts", "./utils.ts"],
"worktop/cors": ["./cors.d.ts", "./cors.ts"],
"worktop/kv": ["./kv.d.ts", "./kv.ts"],
"worktop/ws": ["./ws.d.ts", "./ws.ts"],
}
},
"include": [
"src/**/*",
"types/**/*",
"examples/workers/**/*"
],
"exclude": [
"node_modules"
]
}