tsconfig.node.json 468 B

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