tsconfig.json 289 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "module": "commonjs",
  5. "moduleResolution": "node",
  6. "sourceMap": true,
  7. "declaration": true,
  8. "removeComments": false,
  9. "noImplicitAny": true,
  10. "outDir": "built/"
  11. },
  12. "exclude": [
  13. "built",
  14. "node_modules"
  15. ]
  16. }