Skip to content

Commit 249b502

Browse files
committed
resolve conflicts
Remove the build script from this branch an use the build come from the origin main
2 parents 41f888f + a7dd0a0 commit 249b502

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
},
5959
"scripts": {
6060
"prebuild": "rimraf dist",
61-
"build": "tsc",
6261
"start": "node . --transpile-only --files .| pino-pretty -c -l",
62+
"build": "tsc -p tsconfig.prod.json",
6363
"dev": "tsnd --transpile-only --files src/index.ts | pino-pretty -c -l",
6464
"debug": "tsnd --transpile-only --inspect --files src/index.ts | pino-pretty -c -l",
6565
"cli": "tsnd --transpile-only --files src/index.ts --cli",

tsconfig.prod.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"exclude": [
4+
"src/__tests__",
5+
"src/**/__tests__"
6+
]
7+
}

0 commit comments

Comments
 (0)