tsconfig.ich.json 577 B

12345678910111213141516171819202122232425262728
  1. {
  2. "extends": "./tsconfig.node.json",
  3. "compilerOptions": {
  4. "target": "ES2020",
  5. "module": "ES2020",
  6. "moduleResolution": "node",
  7. "esModuleInterop": true,
  8. "skipLibCheck": true,
  9. "strict": true,
  10. "outDir": "./dist",
  11. "lib": ["ES2022"],
  12. "baseUrl": ".",
  13. "paths": {
  14. "@/*": ["./*"]
  15. },
  16. "resolveJsonModule": true,
  17. "allowSyntheticDefaultImports": true,
  18. "experimentalDecorators": true,
  19. "emitDecoratorMetadata": true
  20. },
  21. "include": [
  22. "scripts/ExportToAi/**/*", "api/**/*"
  23. ],
  24. "exclude": [
  25. "node_modules"
  26. ]
  27. }