Skip to content

Commit

Permalink
outdir is not what we need here
Browse files Browse the repository at this point in the history
  • Loading branch information
pstaender committed Apr 21, 2024
1 parent 978ad19 commit 09b47f8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/*
/dist/
/src/*.js
/src/*.map
2 changes: 1 addition & 1 deletion bin/csv2md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env node
require('../dist/cli')
require('../src/cli')
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"scripts": {
"test": "npx mocha test/**/*.ts",
"build-and-test": "npm run build && npx mocha test/**/*.ts",
"build": "tsc --project tsconfig.json",
"watch": "tsc --project tsconfig.json -w"
"build": "tsc --build",
"watch": "tsc --build -w"
},
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"compilerOptions": {
"module": "commonjs",
"strict": true,
"outDir": "dist",
"sourceMap": true,
"skipLibCheck": true
},
Expand Down

0 comments on commit 09b47f8

Please sign in to comment.