@xube/kit-build 0.0.101 → 0.0.102
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/tsconfig.json +11 -13
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -3,18 +3,16 @@
|
|
|
3
3
|
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
4
4
|
|
|
5
5
|
/* Projects */
|
|
6
|
-
"incremental": true
|
|
7
|
-
"composite": true
|
|
6
|
+
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
|
7
|
+
"composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
|
8
8
|
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
|
9
9
|
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
|
10
10
|
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
|
11
11
|
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
|
12
12
|
|
|
13
13
|
/* Language and Environment */
|
|
14
|
-
"target": "ES2021"
|
|
15
|
-
"lib": [
|
|
16
|
-
"ES2021"
|
|
17
|
-
] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
|
|
14
|
+
"target": "ES2021", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
15
|
+
"lib": ["ES2021"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
|
18
16
|
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
|
19
17
|
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
|
|
20
18
|
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
|
@@ -73,20 +71,20 @@
|
|
|
73
71
|
/* Interop Constraints */
|
|
74
72
|
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
|
75
73
|
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
76
|
-
"esModuleInterop": true
|
|
74
|
+
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
77
75
|
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
78
|
-
"forceConsistentCasingInFileNames": true
|
|
76
|
+
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
79
77
|
|
|
80
78
|
/* Type Checking */
|
|
81
|
-
"strict": true
|
|
82
|
-
"noImplicitAny": false
|
|
79
|
+
"strict": true, /* Enable all strict type-checking options. */
|
|
80
|
+
"noImplicitAny": false, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
83
81
|
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
84
82
|
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
85
83
|
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
|
86
84
|
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
|
87
|
-
"noImplicitThis": true
|
|
85
|
+
"noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
|
88
86
|
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
|
89
|
-
"alwaysStrict": true
|
|
87
|
+
"alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
|
90
88
|
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
|
91
89
|
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
|
92
90
|
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
|
@@ -100,7 +98,7 @@
|
|
|
100
98
|
|
|
101
99
|
/* Completeness */
|
|
102
100
|
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
103
|
-
"skipLibCheck": true
|
|
101
|
+
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
104
102
|
},
|
|
105
103
|
"exclude": ["src/**/*.js"]
|
|
106
104
|
}
|