mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-06-08 00:22:32 +01:00
This does not change the strictness of what we build. It doesn't make things more lax either, that stays exactly the same. But the editor will now complain more.
12 lines
252 B
JSON
12 lines
252 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitThis": false,
|
|
"strictNullChecks": false,
|
|
"strictFunctionTypes": false,
|
|
"strictBindCallApply": false
|
|
}
|
|
}
|