true-pg 0.0.1 → 0.0.2
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/package.json +4 -4
- package/src/bin.ts +0 -0
- package/tsconfig.json +2 -1
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "true-pg",
|
3
|
-
"version": "0.0.
|
4
|
-
"module": "src/index.ts",
|
3
|
+
"version": "0.0.2",
|
5
4
|
"type": "module",
|
6
|
-
"
|
5
|
+
"module": "lib/index.js",
|
6
|
+
"main": "lib/index.js",
|
7
7
|
"bin": {
|
8
|
-
"true-pg": "
|
8
|
+
"true-pg": "lib/bin.js"
|
9
9
|
},
|
10
10
|
"scripts": {
|
11
11
|
"check": "tsc --noEmit",
|
package/src/bin.ts
CHANGED
File without changes
|
package/tsconfig.json
CHANGED
@@ -17,6 +17,7 @@
|
|
17
17
|
"skipLibCheck": true,
|
18
18
|
"noFallthroughCasesInSwitch": true,
|
19
19
|
"noUncheckedIndexedAccess": true,
|
20
|
+
"declaration": true,
|
20
21
|
|
21
22
|
// Some stricter flags (disabled by default)
|
22
23
|
"noUnusedLocals": false,
|
@@ -24,5 +25,5 @@
|
|
24
25
|
"noPropertyAccessFromIndexSignature": false,
|
25
26
|
"outDir": "lib"
|
26
27
|
},
|
27
|
-
"include": ["src/**/*.ts"
|
28
|
+
"include": ["src/**/*.ts"]
|
28
29
|
}
|