0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-22 02:18:39 +01:00
wagtail/tsconfig.json

18 lines
455 B
JSON
Raw Normal View History

{
"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,
"allowJs": true,
"downlevelIteration": true
},
"files": [
"client/src/index.ts",
"client/src/custom.d.ts"
]
}