mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add a default export to big.js As can be seen on https://github.com/MikeMcl/big.js/blob/master/big.js#L925, big.js exposes a default export. Expose this in the Typescript bindings as well. * Add default import test for big.js * Fix lint errors
25 lines
584 B
JSON
25 lines
584 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"test/big.js-module-tests.ts",
|
|
"test/big.js-global-tests.ts",
|
|
"test/big.js-import-default-tests.ts"
|
|
]
|
|
} |