No Description

tsconfig.base.json 720B

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