tsconfig.base.json 364 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "moduleResolution": "node",
  5. "strict": false,
  6. "experimentalDecorators": true,
  7. "skipLibCheck": true,
  8. "esModuleInterop": true,
  9. "allowSyntheticDefaultImports": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "sourceMap": true,
  12. "resolveJsonModule": true,
  13. "jsx": "preserve"
  14. }
  15. }