-
Notifications
You must be signed in to change notification settings - Fork 158
/
tsconfig.json
40 lines (40 loc) · 1.13 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
{
"compileOnSave": true,
"compilerOptions": {
"allowJs": false,
"declaration": true,
"declarationDir": "lib",
"jsx": "react",
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "lib",
"paths": {
"@admin-cli/*": ["packages/haiku-admin-cli/src/*"],
"@cli/*": ["packages/@haiku/cli/src/*"],
"@common/*": ["packages/haiku-common/src/*"],
"@core/*": ["packages/@haiku/core/src/*"],
"@creator/*": ["packages/haiku-creator/src/*"],
"@formats/*": ["packages/haiku-formats/src/*"],
"@plumbing/*": ["packages/haiku-plumbing/src/*"],
"@sdk-creator/*": ["packages/haiku-sdk-creator/src/*"],
"@sdk-inkstone/*": ["packages/@haiku/sdk-inkstone/src/*"],
"@testing/*": ["packages/haiku-testing/src/*"],
"@ui-common/*": ["packages/haiku-ui-common/src/*"]
},
"preserveConstEnums": true,
"rootDir": "src",
"sourceMap": true,
"suppressImplicitAnyIndexErrors": true,
"target": "ES6",
"types": [
"node"
],
"typeRoots": [
"node_modules/@types/"
]
},
"include": [
"packages/**/*.ts"
]
}