jsconfig.json 351 B

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