@periskope/types 0.6.309 → 0.6.310

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/tsconfig.json CHANGED
@@ -1,38 +1,38 @@
1
- {
2
- "include": [
3
- "src/**/*",
4
- "src/index.ts",
5
- "index.d.ts"
6
- ],
7
- "exclude": [
8
- "node_modules",
9
- "dist"
10
- ],
11
- "compilerOptions": {
12
- "outDir": "./dist",
13
- "rootDir": "./src",
14
- "composite": true,
15
- "declaration": true,
16
- "declarationMap": true,
17
- "target": "ES2021" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
18
- "experimentalDecorators": true /* Enable experimental support for legacy experimental decorators. */,
19
- "emitDecoratorMetadata": true /* Emit design-type metadata for decorated declarations in source files. */,
20
- "module": "commonjs" /* Specify what module code is generated. */,
21
- "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
22
- "baseUrl": ".", /* Specify the base directory to resolve non-relative module names. */
23
- "resolveJsonModule": true /* Enable importing .json files. */,
24
- "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
25
- "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
26
- "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
27
- "strict": true /* Enable all strict type-checking options. */,
28
- "noImplicitAny": true /* Enable error reporting for expressions and declarations with an implied 'any' type. */,
29
- "strictNullChecks": true /* When type checking, take into account 'null' and 'undefined'. */,
30
- "strictFunctionTypes": true /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */,
31
- "strictBindCallApply": true /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */,
32
- "strictPropertyInitialization": true /* Check for class properties that are declared but not set in the constructor. */,
33
- "noImplicitThis": true /* Enable error reporting when 'this' is given the type 'any'. */,
34
- "alwaysStrict": true /* Ensure 'use strict' is always emitted. */,
35
- "noImplicitReturns": true /* Enable error reporting for codepaths that do not explicitly return in a function. */,
36
- "skipLibCheck": true /* Skip type checking all .d.ts files. */
37
- }
1
+ {
2
+ "include": [
3
+ "src/**/*",
4
+ "src/index.ts",
5
+ "index.d.ts"
6
+ ],
7
+ "exclude": [
8
+ "node_modules",
9
+ "dist"
10
+ ],
11
+ "compilerOptions": {
12
+ "outDir": "./dist",
13
+ "rootDir": "./src",
14
+ "composite": true,
15
+ "declaration": true,
16
+ "declarationMap": true,
17
+ "target": "ES2021" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
18
+ "experimentalDecorators": true /* Enable experimental support for legacy experimental decorators. */,
19
+ "emitDecoratorMetadata": true /* Emit design-type metadata for decorated declarations in source files. */,
20
+ "module": "commonjs" /* Specify what module code is generated. */,
21
+ "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
22
+ "baseUrl": ".", /* Specify the base directory to resolve non-relative module names. */
23
+ "resolveJsonModule": true /* Enable importing .json files. */,
24
+ "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
25
+ "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
26
+ "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
27
+ "strict": true /* Enable all strict type-checking options. */,
28
+ "noImplicitAny": true /* Enable error reporting for expressions and declarations with an implied 'any' type. */,
29
+ "strictNullChecks": true /* When type checking, take into account 'null' and 'undefined'. */,
30
+ "strictFunctionTypes": true /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */,
31
+ "strictBindCallApply": true /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */,
32
+ "strictPropertyInitialization": true /* Check for class properties that are declared but not set in the constructor. */,
33
+ "noImplicitThis": true /* Enable error reporting when 'this' is given the type 'any'. */,
34
+ "alwaysStrict": true /* Ensure 'use strict' is always emitted. */,
35
+ "noImplicitReturns": true /* Enable error reporting for codepaths that do not explicitly return in a function. */,
36
+ "skipLibCheck": true /* Skip type checking all .d.ts files. */
37
+ }
38
38
  }