mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-25 05:02:57 +01:00
af942a27e4
- Automated reformatting - Manually change code where Prettier reformatting causes issues - Revert "Disable Prettier formatting in CI for now"
15 lines
390 B
JSON
15 lines
390 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"]
|
|
}
|