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 36facf1 commit 98b5a77Copy full SHA for 98b5a77
package.json
@@ -34,7 +34,7 @@
34
"types": "index.d.ts",
35
"scripts": {
36
"prebuild": "del-cli dist",
37
- "build": "tsc",
+ "build": "tsc -p ./tsconfig.build.json",
38
"generate-all": "pnpm run --parallel \"/^generate:.*/\"",
39
"generate-all:check": "pnpm run generate-all && git diff --exit-code",
40
"generate:configs": "ts-node tools/generate-configs",
tsconfig.build.json
@@ -0,0 +1,4 @@
1
+{
2
+ "extends": "./tsconfig.json",
3
+ "exclude": ["./tests/**/*.ts"]
4
+}
tsconfig.json
@@ -16,5 +16,5 @@
16
"outDir": "dist",
17
"sourceMap": false
18
},
19
- "include": ["./lib/**/*.ts"]
+ "include": ["./lib/**/*.ts", "./tests/**/*.ts"]
20
}
0 commit comments