Skip to content

Commit

Permalink
Create tsconfig.build.json file (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-rossati authored Sep 29, 2022
1 parent 1e4a870 commit 9cd1b92
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest -c jest.config.js --coverage",
"validate": "tsc --noEmit",
"build": "tsc",
"build": "tsc -p tsconfig.build.json",
"bundle": "rollup -c"
},
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "./tsconfig.json",
"exclude": [
"test/**/*.ts"
]
}

0 comments on commit 9cd1b92

Please sign in to comment.