From 1a2838c08e88169e0687806361a0e36869cd0018 Mon Sep 17 00:00:00 2001 From: microshine Date: Fri, 25 Jan 2019 15:47:26 +0300 Subject: [PATCH] Update configs --- rollup.config.js | 2 +- tslint.json | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index cba6c45..87c7378 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -9,7 +9,7 @@ export default { plugins: [ typescript({ typescript: require("typescript"), target: "esnext", removeComments: true }), ], - external: Object.keys(pkg.dependencies), + external: ["crypto", ...Object.keys(pkg.dependencies)], output: [ { banner: banner.join("\n"), diff --git a/tslint.json b/tslint.json index eb02aca..4af46f6 100644 --- a/tslint.json +++ b/tslint.json @@ -7,7 +7,9 @@ "rules": { "max-line-length": false, "no-bitwise": false, - "object-literal-sort-keys": false + "object-literal-sort-keys": false, + "no-namespace": false, + "max-classes-per-file": false }, "rulesDirectory": [] } \ No newline at end of file