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 cc9e111 commit c932b5bCopy full SHA for c932b5b
package.json
@@ -5,7 +5,7 @@
5
"main": "build/index.js",
6
"type": "module",
7
"scripts": {
8
- "build": "tsc",
+ "build": "tsc -p tsconfig.build.json",
9
"dev": "tsc --watch",
10
"start": "node build/index.js --http",
11
"start:stdio": "node build/index.js",
tsconfig.build.json
@@ -0,0 +1,18 @@
1
+{
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "./src",
+ "outDir": "./build"
+ },
+ "include": [
+ "src/**/*"
+ ],
+ "exclude": [
+ "node_modules",
12
+ "build",
13
+ "tests",
14
+ "examples",
15
+ "**/*.test.ts",
16
+ "**/*.spec.ts"
17
+ ]
18
+}
0 commit comments