tsconfig.node.json 401 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "CommonJS",
  5. "moduleResolution": "node",
  6. "esModuleInterop": true,
  7. "skipLibCheck": true,
  8. "strict": true,
  9. "outDir": "./dist",
  10. "lib": ["ES2020"],
  11. "baseUrl": ".",
  12. "paths": {
  13. "@/*": ["./*"]
  14. },
  15. "resolveJsonModule": true
  16. },
  17. "include": ["scripts/ExportToAi/**/*"],
  18. "exclude": ["node_modules"]
  19. }