Update configs

This commit is contained in:
microshine 2019-01-25 15:47:26 +03:00
parent a0ca668176
commit 1a2838c08e
2 changed files with 4 additions and 2 deletions

View File

@ -9,7 +9,7 @@ export default {
plugins: [ plugins: [
typescript({ typescript: require("typescript"), target: "esnext", removeComments: true }), typescript({ typescript: require("typescript"), target: "esnext", removeComments: true }),
], ],
external: Object.keys(pkg.dependencies), external: ["crypto", ...Object.keys(pkg.dependencies)],
output: [ output: [
{ {
banner: banner.join("\n"), banner: banner.join("\n"),

View File

@ -7,7 +7,9 @@
"rules": { "rules": {
"max-line-length": false, "max-line-length": false,
"no-bitwise": false, "no-bitwise": false,
"object-literal-sort-keys": false "object-literal-sort-keys": false,
"no-namespace": false,
"max-classes-per-file": false
}, },
"rulesDirectory": [] "rulesDirectory": []
} }