-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
49 lines (49 loc) · 1.22 KB
/
tsconfig.base.json
File metadata and controls
49 lines (49 loc) · 1.22 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": false,
"target": "es2015",
"module": "esnext",
"lib": ["es2022", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@devhelpr/app-canvas": ["libs/app-canvas/src/index.ts"],
"@devhelpr/dom-components": ["libs/dom-components/src/index.ts"],
"@devhelpr/media-library": ["libs/media-library/src/index.ts"],
"@devhelpr/ocif": ["libs/ocif/src/index.ts"],
"@devhelpr/visual-programming-system": [
"libs/visual-programming-system/src/index.ts"
],
"@devhelpr/web-flow-executor": ["libs/web-flow-executor/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"],
"references": [
{
"path": "./libs/app-canvas"
},
{
"path": "./libs/dom-components"
},
{
"path": "./libs/media-library"
},
{
"path": "./libs/visual-programming-system"
},
{
"path": "./libs/web-flow-executor"
},
{
"path": "./libs/ocif"
}
]
}