forked from wso2/identity-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
34 lines (34 loc) · 974 Bytes
/
tsconfig.base.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
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"lib": [
"ESNext"
],
"module": "esnext",
"moduleResolution": "node",
"rootDir": ".",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"sourceMap": true,
"target": "es2015",
"baseUrl": ".",
"paths": {
"@wso2is/dynamic-forms": ["modules/dynamic-forms/src/index.ts"],
"@wso2is/form": ["modules/form/src/index.ts"],
"@wso2is/forms": ["modules/forms/src/index.ts"],
"@wso2is/nx": ["modules/nx/src/index.ts"],
"@wso2is/react-components": [
"modules/react-components/src/index.ts"
]
}
},
"compileOnSave": false,
"exclude": [
"node_modules",
"tmp"
]
}