io-ts
io-ts copied to clipboard
Is it possible to use it with typescript without `nodenex` config option?
The basic example fails, is it possible to use io-ts without altering tsconfig and setting nodenex?
import * as t from 'io-ts'
const User = t.type({
userId: t.number,
name: t.string
})
Cannot find module 'io-ts'. Did you mean to set the 'moduleResolution' option to 'nodenext', or to add aliases to the 'paths' option?
The nodenext option is not required to use io-ts.