|
11 | 11 | // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
12 | 12 |
|
13 | 13 | /* Language and Environment */
|
14 |
| - "target": "ES2017" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, |
| 14 | + "target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, |
15 | 15 | // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
16 | 16 | // "jsx": "preserve", /* Specify what JSX code is generated. */
|
17 | 17 | // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
|
26 | 26 |
|
27 | 27 | /* Modules */
|
28 | 28 | "module": "ESNext" /* Specify what module code is generated. */,
|
29 |
| - // "rootDir": "./", /* Specify the root folder within your source files. */ |
| 29 | + "rootDir": "./src" /* Specify the root folder within your source files. */, |
30 | 30 | "moduleResolution": "Node" /* Specify how TypeScript looks up a file from a given module specifier. */,
|
31 | 31 | // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
32 | 32 | // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
35 | 35 | // "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
36 | 36 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
37 | 37 | // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
38 |
| - "allowImportingTsExtensions": true /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */, |
| 38 | + // "allowImportingTsExtensions": true /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */, |
39 | 39 | // "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
|
40 | 40 | // "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
|
41 | 41 | // "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
|
|
55 | 55 | // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
56 | 56 | // "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
57 | 57 | // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
58 |
| - "noEmit": true /* Disable emitting files from a compilation. */, |
| 58 | + // "noEmit": true, /* Disable emitting files from a compilation. */ |
59 | 59 | // "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. */
|
60 |
| - // "outDir": "./", /* Specify an output folder for all emitted files. */ |
| 60 | + "outDir": "./dist" /* Specify an output folder for all emitted files. */, |
61 | 61 | // "removeComments": true, /* Disable emitting comments. */
|
62 | 62 | // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
63 | 63 | // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
106 | 106 | /* Completeness */
|
107 | 107 | // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
108 | 108 | "skipLibCheck": true /* Skip type checking all .d.ts files. */
|
109 |
| - } |
| 109 | + }, |
| 110 | + "include": ["src/**/*"], |
| 111 | + "exclude": ["node_modules", "dist"] |
110 | 112 | }
|
0 commit comments