File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1212 "build" : " rollup -c" ,
1313 "test" : " jest" ,
1414 "tsc" : " tsc -p . --noEmit" ,
15- "tsc:d" : " tsc -p ./tsconfig-build.json --outDir lib -d --emitDeclarationOnly" ,
16- "prepublishOnly" : " rimraf lib && npm run build && npm run tsc:d"
15+ "prepublishOnly" : " rimraf lib && npm run build"
1716 },
1817 "dependencies" : {
1918 "babel-plugin-module-resolver" : " 4.1.0"
Original file line number Diff line number Diff line change @@ -18,7 +18,14 @@ export default [
1818 format : "es" ,
1919 } ,
2020 ] ,
21- plugins : [ typescript ( ) ] ,
21+ plugins : [
22+ typescript ( {
23+ tsconfig : "./tsconfig.json" ,
24+ outDir : "." ,
25+ declaration : true ,
26+ exclude : [ "src/**/*.spec.*" ] ,
27+ } ) ,
28+ ] ,
2229 } ,
2330 {
2431 input : "src/web/index.ts" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments