tsconfig.seed.json 341 B

1234567891011121314151617
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "module": "commonjs",
  5. "target": "ES2022",
  6. "esModuleInterop": true,
  7. "skipLibCheck": true,
  8. "resolveJsonModule": true
  9. },
  10. "ts-node": {
  11. "transpileOnly": true,
  12. "compilerOptions": {
  13. "module": "commonjs"
  14. }
  15. },
  16. "include": ["prisma/**/*.ts"]
  17. }