react-native-navigation的迁移库

tsconfig-strict.json 488B

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