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 basic example fails, is it possible to use
io-tswithout altering tsconfig and settingnodenex?