Skip to content

Commit

Permalink
chore: update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
nix6839 committed Dec 8, 2023
1 parent 79769c1 commit 676e37e
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
{
"compilerOptions": {
"lib": ["es2022"],
"target": "ES2022",
"lib": ["ES2022"],
"module": "NodeNext",
"target": "es2022",

"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "NodeNext",
"verbatimModuleSyntax": true,
"declaration": true,
"resolveJsonModule": true,

"strict": true,
"noImplicitOverride": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,

"declaration": true,
"outDir": "./dist",

"outDir": "./dist"
"skipLibCheck": true
}
}

0 comments on commit 676e37e

Please sign in to comment.