You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
38
44
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
39
45
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
40
46
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
41
47
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
"allowJs": true/* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */,
54
+
//"checkJs": true/* Enable error reporting in type-checked JavaScript files. */,
49
55
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
50
56
51
57
/* Emit */
52
58
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
53
59
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
54
60
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
57
63
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
58
-
"outDir": "./src/extension/build/bundles/", /* Specify an output folder for all emitted files. */
// "noEmit": true, /* Disable emitting files from a compilation. */
61
67
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
62
68
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
@@ -74,16 +80,16 @@
74
80
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
75
81
76
82
/* Interop Constraints */
77
-
"isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
83
+
"isolatedModules": true/* Ensure that each file can be safely transpiled without relying on other imports. */,
78
84
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
79
-
"allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
80
-
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
85
+
"allowSyntheticDefaultImports": true/* Allow 'import x from y' when a module doesn't have a default export. */,
86
+
"esModuleInterop": true/* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
81
87
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
82
-
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
88
+
"forceConsistentCasingInFileNames": true/* Ensure that casing is correct in imports. */,
83
89
84
90
/* Type Checking */
85
-
// "strict": true, /* Enable all strict type-checking options. */
86
-
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
91
+
// "strict": true/* Enable all strict type-checking options. */,
92
+
// "noImplicitAny": true/* Enable error reporting for expressions and declarations with an implied 'any' type. */,
87
93
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
88
94
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
89
95
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
@@ -104,14 +110,19 @@
104
110
105
111
/* Completeness */
106
112
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
107
-
"skipLibCheck": true/* Skip type checking all .d.ts files. */
113
+
"skipLibCheck": true/* Skip type checking all .d.ts files. */
108
114
},
109
-
// Specifies which files should be included in the compilation.
0 commit comments