tsconfig.json 230 B

1234567891011
  1. {
  2. "extends": "../tsconfig.base.json",
  3. "compilerOptions": {
  4. "removeComments": true,
  5. // outFile is not compatible with all module loaders, including CommonJS
  6. "module": "commonjs"
  7. },
  8. "files": [
  9. "app.ts"
  10. ]
  11. }