tsconfig.json 518 B

123456789101112131415161718192021
  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. "baseUrl": ".",
  13. "paths": {
  14. "three-loader-3dtiles": ["../../../dist/three-loader-3dtiles.d.ts"],
  15. "@math.gl/culling": ["./node_modules/@math.gl/culling/src/index.js"]
  16. }
  17. },
  18. "include": [
  19. "./src/**/*"
  20. ]
  21. }