Browse Source

Fix format

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

30
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"
]
"exclude": ["node_modules", "tmp"]
}
Loading…
Cancel
Save