react-native-webview.git

tsconfig.base.json 697B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compilerOptions": {
  3. "strictNullChecks": false,
  4. "alwaysStrict": true,
  5. "allowSyntheticDefaultImports": true,
  6. "declaration": true,
  7. "declarationDir": "lib",
  8. "emitDecoratorMetadata": false,
  9. "esModuleInterop": true,
  10. "outDir": "lib",
  11. "jsx": "react-native",
  12. "lib": ["es6"],
  13. "module": "esnext",
  14. "moduleResolution": "node",
  15. "noFallthroughCasesInSwitch": true,
  16. "noImplicitAny": true,
  17. "noImplicitReturns": true,
  18. "noImplicitThis": true,
  19. "noUnusedLocals": true,
  20. "noUnusedParameters": true,
  21. "pretty": true,
  22. "removeComments": true,
  23. "sourceMap": true,
  24. "strict": true,
  25. "stripInternal": true,
  26. "target": "es5"
  27. }
  28. }