I have a really basic Typescript file being imported into a Register.tsx file. I keep getting the following error when building with npm.
test.ts' is not a module
test.ts
export class Tester {
test(): string {
return "test";
}
}
Register.tsx
import { Tester } from "./../test"
I've read several different solutions but I can't see anything I'm doing wrong or different. Am I missing something glaringly obvious? I'm new to Typescript / npm / Webpack.