Skip to content

Commit

Permalink
update tsconfig.json format
Browse files Browse the repository at this point in the history
  • Loading branch information
puncsky committed Jun 2, 2019
1 parent ed1a1d5 commit caa5f1f
Showing 1 changed file with 26 additions and 18 deletions.
44 changes: 26 additions & 18 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,35 @@
"jsx": "react",
"declaration": false,
"esModuleInterop": true,
/* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ "strict": true /* Strict Type-Checking Options */, // "noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */, // "strictNullChecks": true /* Enable strict null checks. */, // "strictFunctionTypes": true /* Enable strict checking of function types. */,
/* Enable all strict type-checking options. */ "strictPropertyInitialization": false /* Enable strict checking of property initialization in classes. */,
// "noImplicitThis": true /* Raise error on 'this' expressions with an implied 'any' type. */,
/* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"strict": true,
/* Strict Type-Checking Options */ // "noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */, // "strictNullChecks": true /* Enable strict null checks. */, // "strictFunctionTypes": true /* Enable strict checking of function types. */,
/* Enable all strict type-checking options. */
"strictPropertyInitialization": false,
/* Enable strict checking of property initialization in classes. */ // "noImplicitThis": true /* Raise error on 'this' expressions with an implied 'any' type. */,
// "alwaysStrict": true /* Parse in strict mode and emit "use strict" for each msource file. */,
/* Additional Checks */
"noUnusedLocals": true,
/* Report errors on unused locals. */ "noUnusedParameters": true,
/* Report errors on unused parameters. */ "noImplicitReturns": true,
/* Report error when not all code paths in function return a value. */ "noFallthroughCasesInSwitch": true /* Debugging Options */,
/* Report errors for fallthrough cases in switch statement. */ "traceResolution": false,
/* Report module resolution log messages. */ "listEmittedFiles": false,
/* Print names of generated files part of the compilation. */ "listFiles": false,
/* Print names of files part of the compilation. */ "pretty": true /* Experimental Options */,
/* Stylize errors and messages using color and context. */ "experimentalDecorators": true,
/* Enables experimental support for ES7 decorators. */ "emitDecoratorMetadata": true,
/* Enables experimental support for emitting type metadata for decorators. */ "lib": [
"es7",
"es6",
"dom",
"esnext"
],
/* Report errors on unused locals. */
"noUnusedParameters": true,
/* Report errors on unused parameters. */
"noImplicitReturns": true,
/* Report error when not all code paths in function return a value. */
"noFallthroughCasesInSwitch": true,
/* Debugging Options */ /* Report errors for fallthrough cases in switch statement. */
"traceResolution": false,
/* Report module resolution log messages. */
"listEmittedFiles": false,
/* Print names of generated files part of the compilation. */
"listFiles": false,
/* Print names of files part of the compilation. */
"pretty": true,
/* Experimental Options */ /* Stylize errors and messages using color and context. */
"experimentalDecorators": true,
/* Enables experimental support for ES7 decorators. */
"emitDecoratorMetadata": true,
/* Enables experimental support for emitting type metadata for decorators. */
"lib": ["es7", "es6", "dom", "esnext"],
"resolveJsonModule": true,
"types": ["node"],
"typeRoots": ["node_modules/@types", "src/types"]
Expand Down

0 comments on commit caa5f1f

Please sign in to comment.