tsconfig.json 359 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "ES2020",
  5. "outDir": "out",
  6. "lib": ["ES2020"],
  7. "sourceMap": true,
  8. "rootDir": "src",
  9. "strict": true,
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "forceConsistentCasingInFileNames": true
  13. },
  14. "include": ["src"],
  15. "exclude": ["node_modules", ".vscode-test"]
  16. }