File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 5353 "test:build" : " tsc --build tsconfig.test.json" ,
5454 "test:run" : " mocha -r tsconfig-paths/register --timeout 200000 output/tests/**/*.spec.js" ,
5555 "cover" : " nyc --reporter=lcov --reporter=text yarn test" ,
56- "build" : " yarn clean && yarn build:es2015 && yarn build:esm && yarn build:cjs && yarn build:umd && yarn build:umd:min && yarn build:copy" ,
56+ "build" : " yarn clean && yarn build:es2015 && yarn build:esm && yarn build:esnext && yarn build: cjs && yarn build:umd && yarn build:umd:min && yarn build:copy" ,
5757 "build:es2015" : " tsc --build tsconfig.lib-es2015.json" ,
5858 "build:esm" : " tsc --build tsconfig.lib-esm.json" ,
59+ "build:esnext" : " tsc --build tsconfig.lib-esm.json" ,
5960 "build:cjs" : " tsc --build tsconfig.lib-cjs.json" ,
6061 "build:umd" : " rollup -c rollup.config.js" ,
6162 "build:umd:min" : " cd dist/umd && terser --compress --mangle --source-map --screw-ie8 --comments -o index.min.js -- index.js && gzip index.min.js -c > index.min.js.gz" ,
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ./tsconfig.json" ,
3+ "compilerOptions" : {
4+ "module" : " esnext" ,
5+ "target" : " esnext" ,
6+ "outDir" : " dist/esnext"
7+ },
8+ "exclude" : [
9+ " src/test"
10+ ]
11+ }
You can’t perform that action at this time.
0 commit comments