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 932358c commit b6a6453Copy full SHA for b6a6453
api/nodemon.json
api/package.json
@@ -43,14 +43,13 @@
43
"zod-validation-error": "^0.2.2"
44
},
45
"scripts": {
46
- "dev": "nodemon",
+ "dev": "ts-node-esm src/app.ts",
47
"build": "rollup --config rollup.config.js",
48
"start": "node dist/app.js"
49
50
"devDependencies": {
51
"@octokit/webhooks-types": "^6.2.4",
52
"@types/js-yaml": "^4.0.5",
53
- "nodemon": "^2.0.18",
54
"rollup": "^3.9.1",
55
"rollup-plugin-typescript2": "^0.34.1",
56
"ts-node": "^10.8.1",
api/rollup.config.js
@@ -4,7 +4,7 @@ export default {
4
input: 'src/app.ts',
5
output: {
6
dir: 'dist',
7
- format: 'cjs',
+ format: 'es',
8
9
plugins: [typescript()],
10
};
0 commit comments