Browse Source

Fix format

pull/5027/head
Dan 3 months ago
parent
commit
d93142ea91
  1. 32
      tsconfig.base.json

32
tsconfig.base.json

@ -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"
]
}

Loading…
Cancel
Save