tsconfig.json 424 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "commonjs",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "forceConsistentCasingInFileNames": true,
  8. "jsx": "react",
  9. "baseUrl": ".",
  10. "esModuleInterop": true,
  11. "noUnusedLocals": true,
  12. "noUnusedParameters": true,
  13. "experimentalDecorators": true,
  14. "lib": ["dom", "esnext"],
  15. "incremental": true,
  16. "skipLibCheck": true
  17. }
  18. }