Skip to content

Commit

Permalink
build: update tsconfig for ts 5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
velut committed Apr 8, 2024
1 parent 3978a87 commit 2f97a24
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions tsconfig.json
@@ -1,7 +1,7 @@
// See https://www.totaltypescript.com/tsconfig-cheat-sheet.
{
// See https://www.totaltypescript.com/tsconfig-cheat-sheet.
"compilerOptions": {
/* Base Options: */
// Base options.
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2022",
Expand All @@ -10,16 +10,15 @@
"moduleDetection": "force",
"isolatedModules": true,
"verbatimModuleSyntax": true,
/* Strictness */
// Strictness.
"strict": true,
"noUncheckedIndexedAccess": true,
/* If you're building for a library: */
// Building a library.
"declaration": true,
/* If NOT transpiling with TypeScript: */
"moduleResolution": "bundler",
"module": "esnext",
// Transpiling with a bundler.
"module": "preserve",
"noEmit": true,
/* If your code doesn't run in the DOM: */
// No DOM.
"lib": ["es2022"]
}
}

0 comments on commit 2f97a24

Please sign in to comment.