Kilpi is recommended to be used with TypeScript with strict mode enabled. No additional TypeScript configuration is required.
{ "compilerOptions": { "strict": true // ... } // ...}If you are not able to use strict mode, Kilpi can’t guarantee full type-safety.
Ensure you at least have the following options enabled, as without them, Kilpi fails to infer types properly.
{ "compilerOptions": { "strictNullChecks": true, "strictFunctionTypes": true // ... } // ...}