We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd02526 commit 18bf177Copy full SHA for 18bf177
examples/basic/package.json
@@ -2,9 +2,9 @@
2
"name": "example-basic",
3
"type": "module",
4
"scripts": {
5
- "start": "dist/index.js",
+ "start": "node dist/index.js",
6
"build": "tsc",
7
- "prepare": "ts-patch install -s"
+ "prepare": "ts-patch install -s && node --run build"
8
},
9
"packageManager": "pnpm@10.12.4",
10
"devDependencies": {
examples/basic/src/index.ts
@@ -1,3 +1,3 @@
1
import { greet } from "#utils/greet.js";
-greet("World");
+console.log(greet("World"));
0 commit comments