@reflex-stack/tsp 0.1.9 → 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 +1 -1
- package/src/commands/init.js +2 -1
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -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": "NodeNext",
|
|
75
76
|
"isolatedModules": false,
|
|
76
77
|
"allowImportingTsExtensions": false,
|
|
77
78
|
// Compiler config
|
|
78
79
|
"strict": {{tsStrict}},
|
|
79
|
-
"checkJs": true,
|
|
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/
|