-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
52 lines (51 loc) · 1.68 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
41
42
43
44
45
46
47
48
49
50
51
{
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"jsx": "react-jsx",
"target": "ESNext",
"module": "NodeNext",
"resolveJsonModule": true,
"moduleResolution": "NodeNext",
"skipLibCheck": true,
"sourceMap": true,
"allowJs": false,
"declarationMap": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"strict": true,
"isolatedModules": true,
"paths": {
"keywork": ["./index.ts"],
"keywork/cli": ["./cli/index.ts"],
"keywork/client": ["./client/index.ts"],
"keywork/logging": ["./logging/index.ts"],
"keywork/node": ["./node/index.ts"],
"keywork/errors": ["./errors/index.ts"],
"keywork/docgen": ["./docgen/index.ts"],
"keywork/docgen/utils": ["./docgen/utils/index.ts"],
"keywork/docgen/helpers": ["docgen/helpers/index.ts"],
"keywork/docgen/theme": ["./docgen/theme/index.ts"],
"keywork/events": ["./events/index.ts"],
"keywork/files": ["./files/index.ts"],
"keywork/files/extensions": ["./files/extensions/index.ts"],
"keywork/http": ["./http/index.ts"],
"keywork/http/headers": ["./http/headers/index.ts"],
"keywork/http/responses": ["./http/responses/index.ts"],
"keywork/lifecycle": ["./lifecycle/index.ts"],
"keywork/middleware": ["./middleware/index.ts"],
"keywork/router": ["./router/index.ts"],
"keywork/ssr": ["./ssr/index.ts"],
"keywork/cloudflare": ["./cloudflare/index.ts"],
"keywork/testing": ["./testing/index.ts"],
"keywork/utils": ["./utils/index.ts"],
"keywork/uri": ["./uri/index.ts"]
},
},
"exclude": [
"node_modules",
"dist",
"site"
]
}