react-native-navigation的迁移库

tsconfig-strict.json 614B

1234567891011121314151617181920212223
  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. "noImplicitAny": true,
  14. "noImplicitReturns": true,
  15. "noImplicitThis": true,
  16. "noUnusedLocals": true,
  17. "noUnusedParameters": true,
  18. "pretty": true,
  19. "strictFunctionTypes": false,
  20. "strictNullChecks": true
  21. }
  22. }