DefinitelyTyped/types/bn.js/tslint.json
Matthew Little ea96391e86 [bn.js] Fix module import without 'allowSyntheticDefaultImports' (#41255)
* [bn.js] Fix module import without 'allowSyntheticDefaultImports'

Allow `import * as bn from 'bn.js'` to work without having to enable `"allowSyntheticDefaultImports": true`

* Export the Endianness and Prime types, update unit tests for both import types
2020-01-03 15:09:41 -08:00

12 lines
223 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"no-duplicate-imports": {
"severity": "error",
"options": {
"allow-namespace-imports": true
}
}
}
}