tsconfig.json 672 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "jsx": "react",
  4. "lib": ["es2015", "dom"],
  5. "noImplicitAny": false, // TODO: Enable once all existing code is typed
  6. "noUnusedLocals": true,
  7. "noUnusedParameters": true,
  8. "strictNullChecks": true,
  9. "esModuleInterop": true,
  10. "allowJs": true,
  11. "downlevelIteration": true
  12. },
  13. "files": [
  14. "client/src/index.ts",
  15. "client/src/custom.d.ts",
  16. "client/storybook/stories.d.ts"
  17. ],
  18. "include": ["src", "wagtail"],
  19. "exclude": [
  20. "node_modules",
  21. "static",
  22. // Files with template syntax.
  23. "wagtail/contrib/search_promotions/templates/wagtailsearchpromotions/includes/searchpromotions_formset.js"
  24. ]
  25. }