Skip to content

Commit

Permalink
feat(tsconfig-base): Add pretty and newLine options to tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Dec 21, 2023
1 parent b6c891a commit be2f48e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/tsconfig-base/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// "noEmitHelpers": true,
// "downlevelIteration": true,
"isolatedModules": true, // need for esbuild
"pretty": true,
"newLine": "lf",
// "stripInternal": true,

/* Strict Type-Checking Options */
"strict": true,
Expand All @@ -40,8 +43,9 @@
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"noEmitOnError": true,
// "noUncheckedIndexedAccess": true,
// "noPropertyAccessFromIndexSignature": true,

/* Module Resolution Options */
// "paths": {},
Expand Down

0 comments on commit be2f48e

Please sign in to comment.