RustRover cargo-generate template: Axum + Vue 3 + TypeScript + Tailwind + sqlx
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
459 B

  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "lib": ["ES2023"],
  5. "module": "ESNext",
  6. "skipLibCheck": true,
  7. "moduleResolution": "bundler",
  8. "allowImportingTsExtensions": true,
  9. "isolatedModules": true,
  10. "moduleDetection": "force",
  11. "noEmit": true,
  12. "strict": true,
  13. "noUnusedLocals": true,
  14. "noUnusedParameters": true,
  15. "noFallthroughCasesInSwitch": true,
  16. "types": ["node"]
  17. },
  18. "include": ["vite.config.ts"]
  19. }