0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-22 02:18:39 +01:00
wagtail/tsconfig.json
Karl Hobley 3e158ca2aa
Enable TypeScript (#6472)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2020-10-21 00:51:09 +01:00

16 lines
394 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
},
"files": [
"client/src/index.ts",
"client/src/custom.d.ts"
]
}