Skip to content

Commit

Permalink
Merge pull request #237 from geoblocks/cleanup
Browse files Browse the repository at this point in the history
chore: cleanup tsconfig
  • Loading branch information
fredj authored Nov 25, 2024
2 parents 543849c + 92ded99 commit 6c93b3f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"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,

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

0 comments on commit 6c93b3f

Please sign in to comment.