forked from synergycodes/workflowbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
27 lines (27 loc) · 747 Bytes
/
tsconfig.base.json
File metadata and controls
27 lines (27 loc) · 747 Bytes
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
{
"compileOnSave": false,
"compilerOptions": {
"strict": true,
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"module": "preserve",
"moduleResolution": "bundler",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"target": "es2015",
"lib": ["es2020", "dom", "dom.iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"jsx": "react-jsx",
"types": ["node", "../../apps/frontend/global.d.ts"],
"paths": {
"@/*": ["apps/frontend/src/app/*"],
"@/assets/*": ["apps/frontend/src/assets/*"],
"@workflow-builder/types/*": ["apps/types/src/*"]
}
},
"exclude": ["node_modules", "tmp"]
}