0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-21 18:09:02 +01:00
wagtail/tsconfig.json
2022-04-06 14:40:39 +01:00

26 lines
672 B
JSON

{
"compilerOptions": {
"jsx": "react",
"lib": ["es2015", "dom"],
"noImplicitAny": false, // TODO: Enable once all existing code is typed
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"esModuleInterop": true,
"allowJs": true,
"downlevelIteration": true
},
"files": [
"client/src/index.ts",
"client/src/custom.d.ts",
"client/storybook/stories.d.ts"
],
"include": ["src", "wagtail"],
"exclude": [
"node_modules",
"static",
// Files with template syntax.
"wagtail/contrib/search_promotions/templates/wagtailsearchpromotions/includes/searchpromotions_formset.js"
]
}