jsconfig.json 415 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es6",
  5. "noImplicitAny": true,
  6. "allowSyntheticDefaultImports": true,
  7. "baseUrl": ".",
  8. "paths": {
  9. "type/*": ["./server/src/client-server-shared/type/*"],
  10. "const/*": ["./server/src/client-server-shared/const/*"]
  11. }
  12. },
  13. "include": ["src/**/*", "server/src/**/*"],
  14. "exclude": ["jsdoc/**/*"]
  15. }