How can I turn off the typecheck in a barrel without turning it off in my project?
I tried to add:
project.typecheck=0
in the barrel's barrel.jungle but it doesn't help.
How can I turn off the typecheck in a barrel without turning it off in my project?
I tried to add:
project.typecheck=0
in the barrel's barrel.jungle but it doesn't help.
Did you try turning off type checking in the same way for the project that uses the barrel?
> How can I turn off the typecheck in a barrel without turning it off in my project?
Is type checking in VS Code set to "Default"? To use project.typecheck=0 in monkey.jungle, it needs to be default. A barrel gets recompiled each time you recompile the main app (a .barrel is basically just a zip of the barrel project, so it gets unzipped and compiled each time you compile the main app)
You can then try using project.typecheck=2 (for example) in your main apps's monkey.jungle