Skip to content

Commit f679e98

Browse files
committed
🔧 chore: fix tsconfig
1 parent 918563c commit f679e98

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# node-lib-starter
22

3-
Start NodeJS + TypeScript library developing with ease.
3+
Start NodeJS + TypeScript library developing with ease, have fun!
44

55
## Include
66

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"release": "release-it",
99
"release:dry": "release-it --dry-run",
10-
"dev": "tsnd --respawn --transpile-only ./src/demo.ts",
10+
"dev": "tsnd --respawn --transpile-only ./src/index.ts",
1111
"build": "tsc",
1212
"build:watch": "tsc --watch",
1313
"check": "tsc --noEmit",

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"include": ["src"],
33
"exclude": ["tests", "node_modules"],
44
"compilerOptions": {
5-
"module": "ES6",
5+
"module": "CommonJS",
66
"target": "ES2018",
77
"lib": ["esnext"],
88
"importHelpers": true,

0 commit comments

Comments
 (0)