|
@@ -3,7 +3,7 @@
|
|
|
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
|
|
|
|
/* Projects */
|
|
|
- "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
|
|
+ "incremental": true /* Save .tsbuildinfo files to allow for incremental compilation of projects. */,
|
|
|
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
|
|
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
|
|
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
|
@@ -11,7 +11,7 @@
|
|
|
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
|
|
|
|
|
/* Language and Environment */
|
|
|
- "target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
|
+ "target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
|
|
|
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
|
|
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
|
|
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
|
|
@@ -25,7 +25,7 @@
|
|
|
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
|
|
|
|
|
/* Modules */
|
|
|
- "module": "ESNext", /* Specify what module code is generated. */
|
|
|
+ "module": "ESNext" /* Specify what module code is generated. */,
|
|
|
// "rootDir": "./", /* Specify the root folder within your source files. */
|
|
|
// "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
|
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
|
@@ -47,9 +47,9 @@
|
|
|
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
|
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
|
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
|
- "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
|
+ "sourceMap": true /* Create source map files for emitted JavaScript files. */,
|
|
|
// "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. */
|
|
|
- "outDir": "./build", /* Specify an output folder for all emitted files. */
|
|
|
+ "outDir": "./build" /* Specify an output folder for all emitted files. */,
|
|
|
// "removeComments": true, /* Disable emitting comments. */
|
|
|
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
|
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
@@ -71,12 +71,12 @@
|
|
|
/* Interop Constraints */
|
|
|
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
|
|
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
|
- "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
|
+ "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
|
|
|
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
|
- "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
|
+ "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
|
|
|
|
|
|
/* Type Checking */
|
|
|
- "strict": true, /* Enable all strict type-checking options. */
|
|
|
+ "strict": true /* Enable all strict type-checking options. */,
|
|
|
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
|
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
|
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
@@ -98,6 +98,6 @@
|
|
|
|
|
|
/* Completeness */
|
|
|
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
|
- "skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
|
+ "skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
|
}
|
|
|
}
|