Skip to content

Commit

Permalink
fix: correct scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Dec 18, 2024
1 parent e6542ea commit a3d2f1b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"noEmit": false,
"outDir": "dist"
},
"extends": "./tsconfig.json",
"include": [
"src"
]
}
}
9 changes: 5 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@
"declaration": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"es2021"
],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmit": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"lib": [
"es2021"
],
"target": "es2015"
},
"exclude": [
Expand All @@ -25,4 +26,4 @@
"src",
"tests"
]
}
}

0 comments on commit a3d2f1b

Please sign in to comment.