Skip to content

Commit

Permalink
build package
Browse files Browse the repository at this point in the history
  • Loading branch information
andrefs committed Dec 4, 2023
1 parent f93b7d7 commit 06a11a7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 40 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
originalDatasets
coverage
results
dist
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"scripts": {
"typecheck": "tsc -b tsconfig.json",
"typecheck:watch": "tsc -b tsconfig.json --watch",
"build": "tsc -b tsconfig.json",
"test": "jest"
},
"author": "André Santos",
Expand Down
37 changes: 0 additions & 37 deletions src/index.ts

This file was deleted.

12 changes: 9 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"paths":{
"*": ["src/@types/*"]
}
"paths": {
"*": [
"src/@types/*"
]
},
"baseUrl": "./",
"outDir": "dist",
"sourceMap": true,
"noEmitOnError": true,
}
}

0 comments on commit 06a11a7

Please sign in to comment.