tsconfig.json 243 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "allowSyntheticDefaultImports": true,
  7. "strict": true,
  8. "noEmit": true,
  9. "lib": [
  10. "esnext",
  11. "dom"
  12. ]
  13. },
  14. "include": [
  15. "src/"
  16. ]
  17. }