Skip to content

Commit

Permalink
refactor(tsconfig): add new option
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkeyl committed Mar 15, 2024
1 parent 170d9e1 commit 757ef00
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noErrorTruncation": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"outDir": "",
"skipLibCheck": true,
"strict": true,
"target": "ESNext"
"target": "ESNext",
"types": ["chai", "mocha"]
},
"include": ["src"]
}

0 comments on commit 757ef00

Please sign in to comment.