chore: fix type problems before release

This commit is contained in:
Joren Broekema 2020-08-10 15:32:18 +02:00
parent 850604bdc2
commit d9961a0a76
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 * @typedef {import('../../types/LocalizeMixinTypes').FormatNumberPart} FormatNumberPart
* @param {FormatNumberPart[]} formattedParts * @param {FormatNumberPart[]} formattedParts
* @param {Object} [options] * @param {Object} options
* @param {string} [options.style] * @param {string} [options.style]
* @param {string} [options.currency] * @param {string} [options.currency]
* @param {string} [options.currencyDisplay] * @param {string} [options.currencyDisplay]

View file

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