diff --git a/tsconfig.base.json b/tsconfig.base.json index bf3a81342..34ed5d559 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -10,29 +10,16 @@ "importHelpers": true, "target": "es2015", "module": "esnext", - "typeRoots": [ - "node_modules/@types" - ], - "lib": [ - "es2017", - "dom" - ], + "typeRoots": ["node_modules/@types"], + "lib": ["es2017", "dom"], "skipLibCheck": true, "skipDefaultLibCheck": true, "baseUrl": ".", "paths": { - "@ghostfolio/api/*": [ - "apps/api/src/*" - ], - "@ghostfolio/client/*": [ - "apps/client/src/app/*" - ], - "@ghostfolio/common/*": [ - "libs/common/src/lib/*" - ], - "@ghostfolio/ui/*": [ - "libs/ui/src/lib/*" - ] + "@ghostfolio/api/*": ["apps/api/src/*"], + "@ghostfolio/client/*": ["apps/client/src/app/*"], + "@ghostfolio/common/*": ["libs/common/src/lib/*"], + "@ghostfolio/ui/*": ["libs/ui/src/lib/*"] }, "noFallthroughCasesInSwitch": true, "forceConsistentCasingInFileNames": true, @@ -48,8 +35,5 @@ "noUnusedParameters": true, "allowUnreachableCode": true }, - "exclude": [ - "node_modules", - "tmp" - ] -} \ No newline at end of file + "exclude": ["node_modules", "tmp"] +}