Skip to content

Commit

Permalink
Enable pretty option (stylizes errors and messages)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmeuli committed Jan 14, 2020
1 parent 7d2d154 commit 1f5aaff
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
{
"compilerOptions": {
// Modules
"target": "ES3",
"module": "CommonJS",
"moduleResolution": "Node",
"esModuleInterop": true,
"resolveJsonModule": true,

// JSX
"jsx": "react",

// JS output
"newLine": "lf",
"removeComments": true,
"sourceMap": true,

// Log output
"pretty": true,

// Type checking
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
Expand All @@ -19,8 +28,6 @@
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,

"jsx": "react"
"strictNullChecks": true
}
}

0 comments on commit 1f5aaff

Please sign in to comment.