|
12 | 12 | // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ |
13 | 13 |
|
14 | 14 | /* Language and Environment */ |
15 | | - "target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ |
| 15 | + "target": "es2019", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ |
16 | 16 | // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ |
17 | 17 | // "jsx": "preserve", /* Specify what JSX code is generated. */ |
18 | 18 | // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */ |
|
56 | 56 | "sourceMap": true, /* Create source map files for emitted JavaScript files. */ |
57 | 57 | // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ |
58 | 58 | // "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. */ |
59 | | - "outDir": "./dist-types/src", /* Specify an output folder for all emitted files. */ |
| 59 | + "outDir": "dist-types", /* Specify an output folder for all emitted files. */ |
| 60 | + "rootDir": "src", |
| 61 | + |
| 62 | + "emitDeclarationOnly": true, // Optional: Only emit declaration files without compiling JavaScript |
| 63 | + "skipLibCheck": true, // Optional: Skips checking types of .d.ts files |
| 64 | + "moduleResolution": "node", |
| 65 | + |
60 | 66 | // "removeComments": true, /* Disable emitting comments. */ |
61 | 67 | "noEmit": false, /* Disable emitting files from a compilation. */ |
62 | 68 | // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ |
|
106 | 112 | /* Completeness */ |
107 | 113 | // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ |
108 | 114 | "skipLibCheck": true /* Skip type checking all .d.ts files. */ |
109 | | - } |
| 115 | + }, |
| 116 | + "include": ["src/**/*"] |
110 | 117 | } |
0 commit comments