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.
2 parents 41f888f + a7dd0a0 commit 249b502Copy full SHA for 249b502
package.json
@@ -58,8 +58,8 @@
58
},
59
"scripts": {
60
"prebuild": "rimraf dist",
61
- "build": "tsc",
62
"start": "node . --transpile-only --files .| pino-pretty -c -l",
+ "build": "tsc -p tsconfig.prod.json",
63
"dev": "tsnd --transpile-only --files src/index.ts | pino-pretty -c -l",
64
"debug": "tsnd --transpile-only --inspect --files src/index.ts | pino-pretty -c -l",
65
"cli": "tsnd --transpile-only --files src/index.ts --cli",
tsconfig.prod.json
@@ -0,0 +1,7 @@
1
+{
2
+ "extends": "./tsconfig.json",
3
+ "exclude": [
4
+ "src/__tests__",
5
+ "src/**/__tests__"
6
+ ]
7
+}
0 commit comments