tsconfig.json 839 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "esnext",
  5. "types": [
  6. ],
  7. "sourceMap": false,
  8. "declaration": true,
  9. "declarationMap": true,
  10. "noUncheckedIndexedAccess": true,
  11. "strict": true,
  12. "jsx": "react-jsx",
  13. "isolatedModules": true,
  14. "noUncheckedSideEffectImports": true,
  15. "moduleDetection": "force",
  16. "skipLibCheck": true,
  17. "experimentalDecorators": true,
  18. "noImplicitAny": true,
  19. "strictNullChecks": true,
  20. "strictFunctionTypes": true,
  21. "strictBindCallApply": true,
  22. "strictPropertyInitialization": true,
  23. "noImplicitThis": true,
  24. "alwaysStrict": true,
  25. "esModuleInterop": true,
  26. "removeComments": true,
  27. "noUnusedLocals": true,
  28. "noUnusedParameters": true,
  29. "noImplicitReturns": true,
  30. "forceConsistentCasingInFileNames": true
  31. }
  32. }