tsconfig.json 305 B

1234567891011121314151617
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "../../tsconfig.base.json",
  4. "compilerOptions": {
  5. "jsx": "react-jsx",
  6. "baseUrl": ".",
  7. "paths": {
  8. },
  9. /* TODO: remove below flags for strict checking */
  10. "noImplicitAny": false
  11. },
  12. "include": [
  13. "src"
  14. ]
  15. }