Skip to content

Commit

Permalink
chore: cleanup tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
fredj committed Nov 25, 2024
1 parent 543849c commit 77033a4
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"target": "es2022",
"module": "nodenext",
"lib": ["es2023", "dom"],
"lib": ["es2022", "dom"],
"baseUrl": "./",
"skipLibCheck": true,

"moduleResolution": "nodenext",
"outDir": "./lib",
"inlineSourceMap": true,

"declaration": true,
"declarationDir": "./lib/types",
"declaration": true,
"sourceMap": true,

"declarationMap": true,
"forceConsistentCasingInFileNames": true,
Expand All @@ -29,9 +28,7 @@
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"src/**/*.ts"
],
"include": ["src/**/*.ts"],
"typeAcquisition": {
"enable": false
}
Expand Down

0 comments on commit 77033a4

Please sign in to comment.