-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (31 loc) · 959 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"sourceMap": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"rootDirs": ["src", "test"],
"outDir": "build/ts",
"declaration": true,
"declarationDir": "build/def",
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"strict": true,
"baseUrl": "./src",
"paths": {
"#args": ["args/index.ts"],
"#buffer": ["buffer/index.ts"],
"#db": ["db/index.ts"],
"#io": ["io/index.ts"],
"#iter": ["iter/index.ts"],
"#msg": ["msg/index.ts"],
"#parse": ["parse/index.ts"],
"#state": ["state/index.ts"],
}
},
"exclude": ["build", "node_modules"],
}