tsconfig.json 563 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "commonjs",
  5. "lib": ["ES2020"],
  6. "outDir": "./dist",
  7. "rootDir": "./src",
  8. "strict": false,
  9. "esModuleInterop": true,
  10. "skipLibCheck": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "resolveJsonModule": true,
  13. "declaration": true,
  14. "declarationMap": true,
  15. "sourceMap": true,
  16. "moduleResolution": "node",
  17. "allowSyntheticDefaultImports": true,
  18. "typeRoots": ["./node_modules/@types"]
  19. },
  20. "include": ["src/**/*"],
  21. "exclude": ["node_modules", "dist"]
  22. }