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.
checkJs
1 parent 90d5d3f commit e5d5a83Copy full SHA for e5d5a83
package.json
@@ -13,7 +13,9 @@
13
"scripts": {
14
"test": "node src test",
15
"test:update": "node src test --updateSnapshot",
16
- "build": "node src build",
+ "build": "run-p build:*",
17
+ "build:source": "node src build",
18
+ "build:types": "tsc -p src/",
19
"lint": "node src lint",
20
"format": "node src format",
21
"validate": "node src validate",
src/tsconfig.json
@@ -0,0 +1,12 @@
1
+{
2
+ "extends": "./config/tsconfig.json",
3
+ "include": ["./api"],
4
+ "compilerOptions": {
5
+ "allowJs": true,
6
+ "checkJs": true,
7
+ "declaration": true,
8
+ "noEmit": false,
9
+ "outDir": "../dist",
10
+ "rootDir": "."
11
+ }
12
+}
0 commit comments