We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c523a90 + 9a89ecf commit 4b0dd52Copy full SHA for 4b0dd52
package.json
@@ -4,7 +4,7 @@
4
"type": "module",
5
"main": "dist/server.js",
6
"scripts": {
7
- "dev": "nodemon",
+ "dev": "npx nodemon --exec npx tsx src/server.ts",
8
"build": "tsc",
9
"start": "node dist/server.js"
10
},
tsconfig.json
@@ -9,5 +9,6 @@
"skipLibCheck": true,
"outDir": "dist"
11
12
- "include": ["src", "types.d.ts"]
13
-}
+ "include": ["src", "types.d.ts"],
+ "exclude": ["node_modules", "dist"]
14
+}
0 commit comments