Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
add tsconfig.build.json
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianmross committed Nov 26, 2023
1 parent 60855a4 commit 86b439d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"start": "yarn run build && node ./build/index.js",
"build": "yarn run clean && yarn run compile",
"clean": "rm -rf ./build",
"compile": "tsc",
"compile": "tsc -p tsconfig.build.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"publishConfig": {
Expand Down
7 changes: 7 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"outDir": "./build"
},
"include": ["src/**/*"]
}

0 comments on commit 86b439d

Please sign in to comment.