Skip to content

Commit

Permalink
chore: update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
pine committed Jul 7, 2022
1 parent 6d6d0fb commit 1440089
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
{
"compilerOptions": {
"target": "es5",
"strict": true,
// Type Checking
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"esModuleInterop": true,
"strict": true,

// Modules
"moduleResolution": "node",
"resolveJsonModule": true
"resolveJsonModule": true,

// Language and Environment
"target": "es5",

// Interop Constraints
"esModuleInterop": true,
}
}

0 comments on commit 1440089

Please sign in to comment.