mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-21 18:09:02 +01:00
32 lines
904 B
JSON
32 lines
904 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"lib": ["ES2022", "ES2022.Intl", "DOM", "DOM.iterable"],
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false, // TODO: Enable once all existing code is typed
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "ES2022"
|
|
},
|
|
"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"
|
|
]
|
|
}
|