forked from wso2/identity-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 999 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 999 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
28
29
30
31
32
33
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"experimentalDecorators": true,
"lib": [
"es6",
"dom"
],
"outDir": "dist",
"paths": {
"*": ["types/*"],
"@wso2is/cypress-base/commands": ["node_modules/@wso2is/cypress-base/dist/commands"],
"@wso2is/cypress-base/constants": ["node_modules/@wso2is/cypress-base/dist/constants"],
"@wso2is/cypress-base/page-objects": ["node_modules/@wso2is/cypress-base/dist/page-objects"],
"@wso2is/cypress-base/utils": ["node_modules/@wso2is/cypress-base/dist/utils"]
},
"target": "es5",
"types": [
"cypress",
"node"
],
"sourceMap": false
},
"include": [
"integration",
"fixtures",
"plugins",
"support"
],
"exclude": [ "node_modules", "./output" ],
"extends": "../configs/common.tsconfig.json"
}