Design system.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
608 B

  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "strict": true,
  8. "forceConsistentCasingInFileNames": true,
  9. "noEmit": true,
  10. "esModuleInterop": true,
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "resolveJsonModule": true,
  14. "isolatedModules": true,
  15. "jsx": "preserve",
  16. "incremental": true,
  17. "paths": {
  18. "@/*": ["./src/*"],
  19. "tailwind.config": ["./tailwind.config.js"],
  20. }
  21. },
  22. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  23. "exclude": ["node_modules"]
  24. }