2
0

tsconfig.json 300 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "skipLibCheck": true,
  7. "allowSyntheticDefaultImports": true,
  8. "esModuleInterop": true,
  9. "allowJs": true,
  10. "noEmit": true,
  11. "strict": true,
  12. "isolatedModules": true
  13. }
  14. }