tsconfig.json 314 B

1234567891011121314151617
  1. {
  2. // Allows inheriting a base configuration.
  3. // "extends": "./tsconfig.base.json",
  4. "compilerOptions": {
  5. "declaration": true,
  6. "module": "commonjs",
  7. "outDir": "../js",
  8. "pretty": true,
  9. "removeComments": true,
  10. "sourceMap": false,
  11. "target": "es5"
  12. },
  13. "files": [
  14. "app.ts"
  15. ]
  16. }