tsconfig.app.json 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "compilerOptions": {
  3. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  4. "target": "ES2022",
  5. "useDefineForClassFields": true,
  6. "lib": [
  7. "ES2022",
  8. "DOM",
  9. "DOM.Iterable"
  10. ],
  11. "module": "ESNext",
  12. "types": [
  13. "vite/client"
  14. ],
  15. "skipLibCheck": true,
  16. /* Bundler mode */
  17. "moduleResolution": "bundler",
  18. "allowImportingTsExtensions": true,
  19. "verbatimModuleSyntax": true,
  20. "moduleDetection": "force",
  21. "noEmit": true,
  22. "jsx": "react-jsx",
  23. /* Linting */
  24. "strict": false,
  25. "noUnusedLocals": true,
  26. "noUnusedParameters": true,
  27. "erasableSyntaxOnly": false,
  28. "noFallthroughCasesInSwitch": true,
  29. "noUncheckedSideEffectImports": true,
  30. "paths": {
  31. "@/*": [
  32. "./src/*"
  33. ]
  34. }
  35. },
  36. "include": [
  37. "src"
  38. ],
  39. "exclude": [
  40. "src/loader/point-cloud-loader/core/**/*",
  41. "src/loader/tiles-loader/core/**/*"
  42. ]
  43. }