|
@ -10,29 +10,16 @@ |
|
|
"importHelpers": true, |
|
|
"importHelpers": true, |
|
|
"target": "es2015", |
|
|
"target": "es2015", |
|
|
"module": "esnext", |
|
|
"module": "esnext", |
|
|
"typeRoots": [ |
|
|
"typeRoots": ["node_modules/@types"], |
|
|
"node_modules/@types" |
|
|
"lib": ["es2017", "dom"], |
|
|
], |
|
|
|
|
|
"lib": [ |
|
|
|
|
|
"es2017", |
|
|
|
|
|
"dom" |
|
|
|
|
|
], |
|
|
|
|
|
"skipLibCheck": true, |
|
|
"skipLibCheck": true, |
|
|
"skipDefaultLibCheck": true, |
|
|
"skipDefaultLibCheck": true, |
|
|
"baseUrl": ".", |
|
|
"baseUrl": ".", |
|
|
"paths": { |
|
|
"paths": { |
|
|
"@ghostfolio/api/*": [ |
|
|
"@ghostfolio/api/*": ["apps/api/src/*"], |
|
|
"apps/api/src/*" |
|
|
"@ghostfolio/client/*": ["apps/client/src/app/*"], |
|
|
], |
|
|
"@ghostfolio/common/*": ["libs/common/src/lib/*"], |
|
|
"@ghostfolio/client/*": [ |
|
|
"@ghostfolio/ui/*": ["libs/ui/src/lib/*"] |
|
|
"apps/client/src/app/*" |
|
|
|
|
|
], |
|
|
|
|
|
"@ghostfolio/common/*": [ |
|
|
|
|
|
"libs/common/src/lib/*" |
|
|
|
|
|
], |
|
|
|
|
|
"@ghostfolio/ui/*": [ |
|
|
|
|
|
"libs/ui/src/lib/*" |
|
|
|
|
|
] |
|
|
|
|
|
}, |
|
|
}, |
|
|
"noFallthroughCasesInSwitch": true, |
|
|
"noFallthroughCasesInSwitch": true, |
|
|
"forceConsistentCasingInFileNames": true, |
|
|
"forceConsistentCasingInFileNames": true, |
|
@ -48,8 +35,5 @@ |
|
|
"noUnusedParameters": true, |
|
|
"noUnusedParameters": true, |
|
|
"allowUnreachableCode": true |
|
|
"allowUnreachableCode": true |
|
|
}, |
|
|
}, |
|
|
"exclude": [ |
|
|
"exclude": ["node_modules", "tmp"] |
|
|
"node_modules", |
|
|
} |
|
|
"tmp" |
|
|
|
|
|
] |
|
|
|
|
|
} |
|
|
|
|
|