tsconfig.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. "@/*": ["src/*"],
  28. "#/*": ["types/*"]
  29. }
  30. },
  31. "vueCompilerOptions": {
  32. "experimentalDisableTemplateSupport": true
  33. },
  34. "include": [
  35. "tests/**/*.ts",
  36. "src/**/*.ts",
  37. "src/**/*.d.ts",
  38. "src/**/*.tsx",
  39. "src/**/*.vue",
  40. "types/**/*.d.ts",
  41. "types/**/*.ts",
  42. "build/**/*.ts",
  43. "build/**/*.d.ts",
  44. "mock/**/*.ts",
  45. "vite.config.ts",
  46. "src/**/*.glsl"
  47. , "src/utils/threejs/loadModel.worker.js", "src/utils/threejs/loadModel.worker.js" ],
  48. "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
  49. }