quidproquo-tsconfig 0.0.2 → 0.0.3
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.
- package/README.md +11 -0
- package/package.json +1 -1
- package/tsconfig.json +3 -1
package/README.md
ADDED
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
"resolveJsonModule": true, // We can import json
|
|
23
23
|
|
|
24
24
|
"jsx": "react-jsx", // Emit .js files with the JSX changed to _jsx calls (React 17+?)
|
|
25
|
-
"allowJs": true // We can import JS files not just ts / tsx etc
|
|
25
|
+
"allowJs": true, // We can import JS files not just ts / tsx etc
|
|
26
|
+
|
|
27
|
+
"declaration": true // build type definitions
|
|
26
28
|
}
|
|
27
29
|
}
|