tsconfig.json 253 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "declaration": false,
  6. "noImplicitAny": false,
  7. "removeComments": true,
  8. "noLib": false
  9. },
  10. "filesGlob": [
  11. "./**/*.ts"
  12. ]
  13. }