I am trying to import a function for use in my main.ts
file, but i either get 'is not a module' or 'unexpected import token' when i use node main.ts
to run my file.
These are not node modules and i'm not using any framework.
// main.ts
import * as forms from "./script/form";
forms.autoForm();
// form.ts
export function autoForm() {
// something
}