We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a76133b commit b241594Copy full SHA for b241594
2 files changed
package.json
@@ -1,8 +1,9 @@
1
{
2
"name": "@mrbrunelli/object-validator",
3
- "version": "2.0.2",
+ "version": "2.0.4",
4
"description": "A simple object validator for tiny schemas",
5
"main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
"scripts": {
8
"test": "jest --runInBand --verbose --passWithNoTests",
9
"tdd": "yarn test --watch",
tsconfig.json
@@ -7,7 +7,7 @@
"declarationMap": true,
"target": "es2016",
"module": "commonjs",
10
- "outDir": "./dist",
+ "outDir": ".",
11
"esModuleInterop": true,
12
"forceConsistentCasingInFileNames": true,
13
"strict": true,
0 commit comments