tsconfig.node.json 280 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "skipLibCheck": true,
  5. "module": "ESNext",
  6. "moduleResolution": "bundler",
  7. "allowSyntheticDefaultImports": true,
  8. "target": "ESNext",
  9. "strict": true,
  10. "outDir": "./dist"
  11. },
  12. "include": ["vite.config.*"]
  13. }