tsconfig.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "forceConsistentCasingInFileNames": true,
  8. "allowSyntheticDefaultImports": true,
  9. "strictFunctionTypes": false,
  10. "jsx": "preserve",
  11. "baseUrl": ".",
  12. "allowJs": true,
  13. "sourceMap": true,
  14. "esModuleInterop": true,
  15. "resolveJsonModule": true,
  16. "noUnusedLocals": true,
  17. "noUnusedParameters": true,
  18. "experimentalDecorators": true,
  19. "lib": ["dom", "esnext"],
  20. "types": ["vite/client", "jest"],
  21. "typeRoots": ["./node_modules/@types/", "./types"],
  22. "noImplicitAny": false,
  23. "skipLibCheck": true,
  24. "paths": {
  25. "/@/*": ["src/*"],
  26. "/#/*": ["types/*"]
  27. }
  28. },
  29. "vueCompilerOptions": {
  30. "experimentalDisableTemplateSupport": true
  31. },
  32. "include": [
  33. "tests/**/*.ts",
  34. "src/**/*.ts",
  35. "src/**/*.d.ts",
  36. "src/**/*.tsx",
  37. "src/**/*.vue",
  38. "types/**/*.d.ts",
  39. "types/**/*.ts",
  40. "build/**/*.ts",
  41. "build/**/*.d.ts",
  42. "mock/**/*.ts",
  43. "vite.config.ts",
  44. "src/**/*.glsl"
  45. , "src/utils/threejs/loadModel.worker.js", "src/utils/threejs/loadModel.worker.js" ],
  46. "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
  47. }