tsconfig.json 289 B

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