I\'m using some unpopular modules such as Dyo
and js-sha3
which doesn\'t have any types, it seems.
I don\'t really care right now about types i
For whoever does not want to create their own .d.ts
definition files, you can use "noImplicitAny": false
in tsconfig.json
to allow using external libraries without TypeScript definition files.
Example :
{
"compileOnSave": false,
"compilerOptions": {
...
"noImplicitAny": false,
...
}
}
}
This allows TypeScript to infer any
type from every missing type, hence this will also affect your own project.