forked from espocrm/ext-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 758 Bytes
/
Copy pathtsconfig.json
File metadata and controls
27 lines (27 loc) · 758 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
{
"compilerOptions": {
"paths": {
"*": ["./site/client/src/*"],
"modules/crm/*": ["./site/client/modules/crm/src/*"],
"modules/{@nameHyphen}/*": ["./src/files/client/custom/modules/{@nameHyphen}/src/*"]
},
"module": "ES6",
"target": "ES2018",
"lib": [
"ES2019",
"Decorators",
"DOM",
"DOM.Iterable"
],
"moduleResolution": "bundler",
"skipLibCheck": true,
"allowJs": true,
"checkJs": false,
"noEmit": true,
"strictPropertyInitialization": false
},
"include": [
"src/files/client/custom/modules/{@nameHyphen}/src",
"site/client/src/global.d.ts"
]
}