dhre-component-lib 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tsconfig.json +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhre-component-lib",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "test": "jest",
package/tsconfig.json CHANGED
@@ -103,7 +103,6 @@
103
103
 
104
104
  // Added
105
105
  "jsx": "react",
106
- "module": "ESNext",
107
106
  "declarationDir": "types",
108
107
  "sourceMap": true,
109
108
  "outDir": "./dist",
@@ -114,7 +113,9 @@
114
113
  "resolveJsonModule": true,
115
114
  "experimentalDecorators": true,
116
115
  "emitDecoratorMetadata": true,
116
+ "module": "commonjs",
117
+ "allowJs": true,
117
118
  },
118
119
  "include": ["src/**/*"],
119
- "exclude": ["node_modules", "**/*.test.tsx"]
120
+ "exclude": ["node_modules", "**/*.test.tsx", "dist"]
120
121
  }