create-sandi-ts-app 0.1.1 → 0.1.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
CHANGED
|
@@ -77,13 +77,13 @@
|
|
|
77
77
|
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
78
78
|
|
|
79
79
|
/* Type Checking */
|
|
80
|
-
|
|
81
|
-
"noImplicitAny": true,
|
|
82
|
-
"strictNullChecks": true,
|
|
83
|
-
"strictFunctionTypes": true,
|
|
80
|
+
"strict": true, /* Enable all strict type-checking options. */
|
|
81
|
+
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
82
|
+
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
83
|
+
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
84
84
|
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
|
85
|
-
"strictPropertyInitialization": true,
|
|
86
|
-
"noImplicitThis": true,
|
|
85
|
+
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
|
86
|
+
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
|
87
87
|
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
|
88
88
|
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
|
89
89
|
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|