tsconfig.json 356 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "sourceMap": true,
  4. "outDir": ".",
  5. "module": "commonjs",
  6. "moduleResolution": "node",
  7. "noEmitOnError": true,
  8. "target": "es2015",
  9. "declaration": true,
  10. "removeComments": false,
  11. "noImplicitAny": true,
  12. "forceConsistentCasingInFileNames": true,
  13. "noUnusedLocals": true,
  14. "pretty": true
  15. }
  16. }