Skip to content

Commit

Permalink
Tweak tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Septh committed Aug 27, 2024
1 parent 3595b31 commit 18d430e
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,25 @@
],
"compilerOptions": {

// Lib
"lib": [ "ESNext" ],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
// Node stuff
"module": "Node16",
"allowSyntheticDefaultImports": true,

// Input
"allowSyntheticDefaultImports": true,
"moduleResolution": "Node16",
"resolveJsonModule": true,
"checkJs": true,

// Output
"target": "ESNext",
"module": "Node16",
"sourceMap": true,
"removeComments": true,
"noEmit": true,

// Lib
"lib": [ "ESNext" ],
"skipLibCheck": true,
"skipDefaultLibCheck": true,

// Type checking
"strict": true,
"noImplicitReturns": true,
Expand Down

0 comments on commit 18d430e

Please sign in to comment.