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 333e25a commit a7dd0a0Copy full SHA for a7dd0a0
package.json
@@ -58,7 +58,7 @@
58
},
59
"scripts": {
60
"prebuild": "rimraf dist",
61
- "build": "tsc",
+ "build": "tsc -p tsconfig.prod.json",
62
"dev": "tsnd --transpile-only --files src/index.ts | pino-pretty -c -l",
63
"debug": "tsnd --transpile-only --inspect --files src/index.ts | pino-pretty -c -l",
64
"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