|
|
@ -20,7 +20,21 @@ |
|
|
|
"@ghostfolio/client/*": ["apps/client/src/app/*"], |
|
|
|
"@ghostfolio/common/*": ["libs/common/src/lib/*"], |
|
|
|
"@ghostfolio/ui/*": ["libs/ui/src/lib/*"] |
|
|
|
} |
|
|
|
}, |
|
|
|
"noFallthroughCasesInSwitch": true, |
|
|
|
"forceConsistentCasingInFileNames": true, |
|
|
|
// set to true to enable stricter type checking for this project |
|
|
|
"strict": false, |
|
|
|
"strictNullChecks": false, |
|
|
|
"strictPropertyInitialization": false, |
|
|
|
"noImplicitReturns": false, |
|
|
|
"noImplicitAny": false, |
|
|
|
"noImplicitThis": false, |
|
|
|
"noImplicitOverride": false, |
|
|
|
"noPropertyAccessFromIndexSignature": false, |
|
|
|
"noUnusedLocals": false, |
|
|
|
"noUnusedParameters": false, |
|
|
|
"allowUnreachableCode": true // set to false for stricter type checking |
|
|
|
}, |
|
|
|
"exclude": ["node_modules", "tmp"] |
|
|
|
} |
|
|
|