Skip to content

Commit

Permalink
Removed unnecessary build step
Browse files Browse the repository at this point in the history
  • Loading branch information
nebrelbug committed Sep 11, 2020
1 parent 59b4a7f commit 27fadf2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"scripts": {
"lint": "eslint src/*.ts test/*.spec.ts examples/* --ext .js,.ts",
"prebuild": "rimraf dist",
"build": "tsc --module es6 && rollup -c rollup.config.ts && typedoc --out docs --target es6 --mode modules src",
"build": "rollup -c rollup.config.ts && typedoc --out docs --target es6 --mode modules src",
"release": "npm run build && np",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage",
Expand Down
20 changes: 5 additions & 15 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,16 @@
"moduleResolution": "node",
"target": "es5",
"module": "es2015",
"lib": [
"es2015",
"es2016",
"es2017",
"dom"
],
"lib": ["es2015", "es2016", "es2017", "dom"],
"strict": true,
"sourceMap": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declarationDir": "dist/types",
"outDir": "build"
"outDir": "dist"
},
"include": [
"src"
],
"exclude": [
"node_modules",
"typings"
]
}
"include": ["src"],
"exclude": ["node_modules", "typings"]
}

0 comments on commit 27fadf2

Please sign in to comment.