mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-27 14:36:05 +00:00
27 lines
640 B
JSON
27 lines
640 B
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"*": ["./client/src/*"],
|
|
"modules/crm/*": ["./client/modules/crm/src/*"],
|
|
"crm:*": ["./client/modules/crm/src/*"]
|
|
},
|
|
"module": "ES6",
|
|
"target": "ES2018",
|
|
"lib": [
|
|
"ES2019",
|
|
"Decorators",
|
|
"DOM.Iterable"
|
|
],
|
|
"moduleResolution": "bundler",
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noEmit": true,
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"include": [
|
|
"client/src",
|
|
"client/modules/crm/src"
|
|
]
|
|
}
|