Skip to content

Commit

Permalink
fix: correct tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
lucgagan committed Nov 13, 2023
1 parent be8b9bb commit 0310db4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"scripts": {
"start": "tsx ./tests/bin/startServer.ts",
"build": "tsc --noEmit false",
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write ./src",
"lint": "prettier --check ./src",
"semantic-release": "semantic-release",
Expand Down
8 changes: 8 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": false,
"outDir": "dist"
},
"include": ["src"]
}

0 comments on commit 0310db4

Please sign in to comment.