react-native-navigation的迁移库

tsconfig-strict.json 634B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "compilerOptions": {
  4. "allowSyntheticDefaultImports": false,
  5. "allowUnreachableCode": false,
  6. "allowUnusedLabels": false,
  7. "alwaysStrict": true,
  8. "diagnostics": true,
  9. "forceConsistentCasingInFileNames": true,
  10. "importHelpers": true,
  11. "noEmitOnError": true,
  12. "noFallthroughCasesInSwitch": true,
  13. "noImplicitReturns": true,
  14. "noImplicitThis": true,
  15. "noUnusedLocals": true,
  16. "noUnusedParameters": true,
  17. "pretty": true,
  18. "strictFunctionTypes": true,
  19. "strictNullChecks": true,
  20. "strict": true,
  21. "noImplicitAny": false
  22. }
  23. }