tsconfig.json 452 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "target": "es2018",
  4. "module": "commonjs",
  5. "outDir": "out",
  6. "lib": ["es2018", "dom"],
  7. "sourceMap": true,
  8. "rootDir": "src",
  9. "strict": true,
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "forceConsistentCasingInFileNames": true
  13. }
  14. }