tsconfig.json 861 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "compilerOptions": {
  3. "target": "ES2017",
  4. "lib": [
  5. "dom",
  6. "dom.iterable",
  7. "esnext"
  8. ],
  9. "allowJs": true,
  10. "skipLibCheck": true,
  11. "strict": true,
  12. "noEmit": true,
  13. "esModuleInterop": true,
  14. "module": "esnext",
  15. "moduleResolution": "bundler",
  16. "resolveJsonModule": true,
  17. "isolatedModules": true,
  18. "jsx": "preserve",
  19. "incremental": true,
  20. "strictNullChecks": false,
  21. "plugins": [
  22. {
  23. "name": "next"
  24. }
  25. ],
  26. "paths": {
  27. "@/*": [
  28. "./*"
  29. ],
  30. "@framework/*": [
  31. "./lib/live2d/Framework/src/*"
  32. ],
  33. "@live2dCore/*": [
  34. "./lib/live2d/Core/*"
  35. ]
  36. }
  37. },
  38. "include": [
  39. "**/*.ts",
  40. "**/*.tsx",
  41. ".next/types/**/*.ts",
  42. "next-env.d.ts",
  43. "./dist/types/**/*.ts"
  44. ],
  45. "exclude": [
  46. "node_modules"
  47. ]
  48. }