tsconfig.json 404 B

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