tsconfig.json 190 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "strict": true,
  4. "removeComments": true,
  5. "sourceMap": true,
  6. "outFile": "dist/bundle.js",
  7. "target": "es6"
  8. },
  9. "include": [
  10. "src/**/*"
  11. ]
  12. }