diff --git a/package.json b/package.json index 25718ec0..1da564cc 100644 --- a/package.json +++ b/package.json @@ -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 ", diff --git a/scripts/start.ts b/src/main.ts similarity index 100% rename from scripts/start.ts rename to src/main.ts diff --git a/tsconfig.json b/tsconfig.json index f6aeeca4..6991dda9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,7 +18,6 @@ } }, "include": [ - "src/**/*", - "scripts/**/*" + "src/**/*" ] }