|
| 1 | +{ |
| 2 | + "compilerOptions": { |
| 3 | + /* Visit https://aka.ms/tsconfig.json to read more about this file */ |
| 4 | + |
| 5 | + /* Basic Options */ |
| 6 | + "target": "es6" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */, |
| 7 | + "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */, |
| 8 | + "lib": [ |
| 9 | + "DOM", |
| 10 | + "ES6", |
| 11 | + "DOM.Iterable", |
| 12 | + "ScriptHost" |
| 13 | + ] /* Specify library files to be included in the compilation. */, |
| 14 | + "sourceMap": true /* Generates corresponding '.map' file. */, |
| 15 | + "outDir": "./dist" /* Redirect output structure to the directory. */, |
| 16 | + "rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */, |
| 17 | + "removeComments": true /* Do not emit comments to output. */, |
| 18 | + "noEmitOnError": true, |
| 19 | + |
| 20 | + /* Additional Checks */ |
| 21 | + "noUnusedLocals": true /* Report errors on unused locals. */, |
| 22 | + "noUnusedParameters": true /* Report errors on unused parameters. */, |
| 23 | + "noImplicitReturns": true /* Report error when not all code paths in function return a value. */, |
| 24 | + |
| 25 | + /* Module Resolution Options */ |
| 26 | + "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, |
| 27 | + |
| 28 | + /* Experimental Options */ |
| 29 | + "experimentalDecorators": true /* Enables experimental support for ES7 decorators. */, |
| 30 | + |
| 31 | + /* Advanced Options */ |
| 32 | + "skipLibCheck": true /* Skip type checking of declaration files. */, |
| 33 | + "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ |
| 34 | + }, |
| 35 | + "exclude": ["node_modules"] |
| 36 | +} |
0 commit comments