2020-10-21 01:51:09 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": ["es2015", "dom"],
|
|
|
|
"noImplicitAny": false, // TODO: Enable once all existing code is typed
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strictNullChecks": true,
|
2020-10-21 10:42:14 +02:00
|
|
|
"esModuleInterop": true,
|
2021-04-01 11:00:22 +02:00
|
|
|
"allowJs": true,
|
|
|
|
"downlevelIteration": true
|
2020-10-21 01:51:09 +02:00
|
|
|
},
|
2022-02-18 17:07:09 +01:00
|
|
|
"files": [
|
|
|
|
"client/src/index.ts",
|
|
|
|
"client/src/custom.d.ts",
|
|
|
|
"client/storybook/stories.d.ts"
|
|
|
|
],
|
2022-02-18 16:34:33 +01:00
|
|
|
"include": ["src", "wagtail"],
|
2022-02-18 17:07:09 +01:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"static",
|
|
|
|
// Files with template syntax.
|
|
|
|
"wagtail/contrib/search_promotions/templates/wagtailsearchpromotions/includes/searchpromotions_formset.js"
|
|
|
|
]
|
2020-10-21 01:51:09 +02:00
|
|
|
}
|