tsconfig.json 435 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "es2015",
  4. "module": "esnext",
  5. "sourceMap": true,
  6. "inlineSources": true,
  7. "allowSyntheticDefaultImports": true,
  8. "skipLibCheck": true,
  9. "esModuleInterop": true,
  10. "moduleResolution": "node",
  11. "jsx": "react-jsx",
  12. "baseUrl": ".",
  13. "paths": {
  14. "@math.gl/culling": ["./node_modules/@math.gl/culling/src/index.js"]
  15. }
  16. },
  17. "include": [
  18. "./src/**/*"
  19. ]
  20. }