When I tried importing the @rbxts/t package inside of one of my TypeScript files I got the error: t is not a valid member of Folder "user_modelconfigurator.rbxmx.ModelConfigurator.include.node_modules.t.lib"
Which lead me to the import line in the generated lua file from roblox-ts:
local t = TS.import(script, TS.getModule(script, "t").lib.t).t
When I look at the hierarchy of folders generated by roblox-ts I didn't see any mention of t, just the ts ModuleScript specific to @rbxts/t.
When I tried importing the
@rbxts/t
package inside of one of my TypeScript files I got the error: t is not a valid member of Folder "user_modelconfigurator.rbxmx.ModelConfigurator.include.node_modules.t.lib"Which lead me to the import line in the generated lua file from roblox-ts:
When I look at the hierarchy of folders generated by roblox-ts I didn't see any mention of t, just the
ts
ModuleScript specific to @rbxts/t.