Skip to content

Commit

Permalink
Move scripts to src/ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
deptyped committed Feb 10, 2024
1 parent 9c0a6cb commit e72ab5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"format": "eslint . --fix",
"typecheck": "tsc",
"build": "tsc --noEmit false",
"dev": "tsc-watch --onSuccess \"tsx ./scripts/start.ts\"",
"start": "tsc && tsx ./scripts/start.ts",
"start:force": "tsx ./scripts/start.ts",
"dev": "tsc-watch --onSuccess \"tsx ./src/main.ts\"",
"start": "tsc && tsx ./src/main.ts",
"start:force": "tsx ./src/main.ts",
"prepare": "npx husky install"
},
"author": "deptyped <[email protected]>",
Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
}
},
"include": [
"src/**/*",
"scripts/**/*"
"src/**/*"
]
}

0 comments on commit e72ab5e

Please sign in to comment.