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 cd4af9c commit 3ec0d93Copy full SHA for 3ec0d93
package.json
@@ -12,7 +12,7 @@
12
"build": "rollup -c",
13
"test": "jest",
14
"tsc": "tsc -p . --noEmit",
15
- "tsc:d": "tsc -p . --outDir lib -d --emitDeclarationOnly",
+ "tsc:d": "tsc -p ./tsconfig-build.json --outDir lib -d --emitDeclarationOnly",
16
"prepublishOnly": "rimraf lib && npm run build && npm run tsc:d"
17
},
18
"dependencies": {
tsconfig-build.json
@@ -0,0 +1,4 @@
1
+{
2
+ "extends": "./tsconfig",
3
+ "exclude": ["src/**/*.spec.*"]
4
+}
tsconfig.json
@@ -15,5 +15,5 @@
"isolatedModules": true
"include": ["src"],
- "exclude": ["node_modules", "src/**/*.spec.*"]
+ "exclude": ["node_modules"]
19
}
0 commit comments