mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-21 18:09:02 +01:00
bbbc31ff60
* Copy code from wagtail-comment-frontend
Exact copy of the src directory from:
4486c2fc32
* Integrate commenting code
* Linting
18 lines
455 B
JSON
18 lines
455 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"
|
|
]
|
|
}
|