tsconfig.json 348 B

12345678910111213141516171819202122
  1. {
  2. "ts-node": {
  3. "files": true
  4. },
  5. "compilerOptions": {
  6. "target": "es2020",
  7. "module": "commonjs",
  8. "outDir": "./lib",
  9. "rootDir": "./src",
  10. "declaration": true,
  11. "strict": true,
  12. "esModuleInterop": true,
  13. "sourceMap": true,
  14. "skipLibCheck": true
  15. },
  16. "include": [
  17. "src"
  18. ],
  19. "exclude": [
  20. "test"
  21. ]
  22. }