Open al6x opened 4 months ago
The basic example fails, is it possible to use io-ts without altering tsconfig and setting nodenex?
io-ts
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.
nodenext
The basic example fails, is it possible to use
io-ts
without altering tsconfig and settingnodenex
?