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 ADDED
@@ -0,0 +1,11 @@
1
+ # quidproquo
2
+
3
+ JS Library for building web servers using pure functions and generators.
4
+
5
+ ## tsconfig
6
+
7
+ tsconfig for quidproquo library packages
8
+
9
+ ### Note
10
+
11
+ Currently under development ~ Not for production
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quidproquo-tsconfig",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "",
5
5
  "main": "tsconfig.json",
6
6
  "scripts": {
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
  }