tsconfig.json 423 B

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