forked from Activiti/activiti-modeling-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
40 lines (40 loc) · 1.74 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": false,
"compilerOptions": {
"importHelpers": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"target": "es2015",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["node_modules/@types", "../../node_modules/@types"],
"lib": ["es2019", "dom", "DOM.Iterable", "esnext.array"],
"module": "es2015",
"types": ["jasmine", "jest", "node"],
"baseUrl": "./",
"paths": {
"@alfresco-dbp/modeling-shared/sdk": ["projects/modeling-shared/sdk/src/public-api.ts"],
"@alfresco-dbp/modeling-ce/connector-editor": ["projects/connector-editor/src/public-api.ts"],
"@alfresco-dbp/modeling-ce/process-editor": ["projects/process-editor/src/public-api.ts"],
"@alfresco-dbp/modeling-ce/app-shell": ["projects/app-shell/src/public-api.ts"],
"@alfresco-dbp/adf-candidates/core/*": ["projects/adf-candidates/core/*"],
"@alfresco-dbp/modeling-ce/dashboard": ["projects/dashboard/src/public-api.ts"],
"@alfresco-dbp/modeling-ce/project-editor": ["projects/project-editor/src/public-api.ts"],
"@alfresco-dbp/adf-core/tooling": ["projects/adf-candidates/core/tooling/src/index.ts"],
"package.json": ["./package.json"]
}
},
"exclude": ["node_modules"],
"angularCompilerOptions": {
"preserveWhitespaces": false,
"strictTemplates": true
}
}