tsconfig.node.json 328 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "skipLibCheck": true,
  5. "module": "ESNext",
  6. "moduleResolution": "node",
  7. "allowSyntheticDefaultImports": true,
  8. "baseUrl": "./",
  9. "paths": {
  10. "@": [
  11. "src"
  12. ],
  13. "@/*": [
  14. "src/*"
  15. ]
  16. }
  17. },
  18. "include": ["vite.config.ts"]
  19. }