express TS backend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 regels
404 B

  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "esModuleInterop": true,
  5. "target": "es6",
  6. "noImplicitAny": true,
  7. "moduleResolution": "node",
  8. "sourceMap": true,
  9. "outDir": "dist",
  10. "baseUrl": ".",
  11. "paths": {
  12. "*": [
  13. "node_modules/*"
  14. ]
  15. }
  16. },
  17. "include": [
  18. "src/**/*"
  19. ]
  20. }