tsconfig.json 890 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. /* Basic Options */
  4. "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
  5. // "module": "commonjs", /* Specify module code generation: 'commonjs', 'amd', 'system', 'umd' or 'es2015' */
  6. "sourceMap": true, /* Generates corresponding '.map' file. */
  7. "outDir": "js",
  8. // "outFile": "output.js", /* Concatenate and emit output to single file. */
  9. // "watch": true,
  10. /* Strict Type-Checking Options */
  11. "noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */
  12. /* Additional Checks */
  13. "noUnusedLocals": true /* Report errors on unused locals. */
  14. },
  15. "files": [
  16. "app/app.ts"
  17. ]
  18. }