Merge pull request #872 from ing-bank/chore/types-issue

chore: fix type problems before release
This commit is contained in:
Joren Broekema 2020-08-10 15:41:05 +02:00 committed by GitHub
commit 0f0eff17fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -13,7 +13,7 @@ import { forceENAUSymbols } from './forceENAUSymbols.js';
*
* @typedef {import('../../types/LocalizeMixinTypes').FormatNumberPart} FormatNumberPart
* @param {FormatNumberPart[]} formattedParts
* @param {Object} [options]
* @param {Object} options
* @param {string} [options.style]
* @param {string} [options.currency]
* @param {string} [options.currencyDisplay]

View file

@ -5,5 +5,13 @@
"emitDeclarationOnly": true,
"noEmit": false
},
"exclude": ["packages/*/index.js"]
"exclude": [
"node_modules",
"**/node_modules/*",
"**/coverage/*",
"**/dist/**/*",
"packages/**/test-helpers",
"packages/singleton-manager/demo/",
"packages/singleton-manager/test/"
]
}