tsconfig.json 391 B

123456789101112131415161718
  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. "paths": {
  12. "@math.gl/culling": ["./node_modules/@math.gl/culling/src/index.js"]
  13. }
  14. },
  15. "include": [
  16. "./src/**/*"
  17. ]
  18. }