2
2
"compilerOptions" : {
3
3
/* Basic Options */
4
4
// "incremental": true, /* Enable incremental compilation */
5
- "target" : " es6" , /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
6
- "module" : " commonjs" , /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
5
+ "target" : " es6" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ ,
6
+ "module" : " commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ ,
7
7
// "allowJs": true, /* Allow javascript files to be compiled. */
8
8
// "checkJs": true, /* Report errors in .js files. */
9
9
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
10
10
// "declaration": true, /* Generates corresponding '.d.ts' file. */
11
11
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
12
12
// "sourceMap": true, /* Generates corresponding '.map' file. */
13
13
// "outFile": "./", /* Concatenate and emit output to single file. */
14
- "outDir" : " ./lib" , /* Redirect output structure to the directory. */
15
- "rootDir" : " ./src" , /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
14
+ "outDir" : " ./lib" /* Redirect output structure to the directory. */ ,
15
+ "rootDir" : " ./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ ,
16
16
// "composite": true, /* Enable project compilation */
17
17
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
18
18
// "removeComments": true, /* Do not emit comments to output. */
21
21
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
22
22
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
23
23
/* Strict Type-Checking Options */
24
- "strict" : true , /* Enable all strict type-checking options. */
25
- "noImplicitAny" : false , /* Raise error on expressions and declarations with an implied 'any' type. */
24
+ "strict" : true /* Enable all strict type-checking options. */ ,
25
+ "noImplicitAny" : false /* Raise error on expressions and declarations with an implied 'any' type. */ ,
26
26
// "strictNullChecks": true, /* Enable strict null checks. */
27
27
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
28
28
// "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
54
54
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
55
55
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
56
56
},
57
- "exclude" : [
58
- " node_modules" ,
59
- " **/*.test.ts"
60
- ]
61
- }
57
+ "exclude" : [" node_modules" , " **/*.test.ts" ]
58
+ }
0 commit comments