@reflex-stack/tsp 0.1.10 → 0.1.11

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reflex-stack/tsp",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "tsp": "./src/cli.js"
@@ -72,13 +72,14 @@ const tsconfigTemplate = `{
72
72
  "lib": [{{libs}}],
73
73
  // Module config, you should not change it
74
74
  "module": "NodeNext",
75
- "moduleResolution": "node",
75
+ "moduleResolution": "NodeNext",
76
76
  "isolatedModules": false,
77
77
  "allowImportingTsExtensions": false,
78
78
  // Compiler config
79
79
  "strict": {{tsStrict}},
80
80
  "useDefineForClassFields" : true,
81
81
  "allowSyntheticDefaultImports": true,
82
+ "skipLibCheck": true,
82
83
  // ---
83
84
  // Feel free to configure this file for your needs
84
85
  // https://www.typescriptlang.org/tsconfig/