in my package.json I have
"type": "commonjs"
when I run my script this works : "start": "ts-node src/index.ts",
gulp complains : "Cannot use import statement outside a module" (I'm using import rather than require as not all packages support require).
If I switch the type to "module" in pacakge.json my gulp script runs but then my script complains : TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".ts" for .... src\index.ts
Is there a way to configure the two to co-exist? Is it possible to have multiple configs?
Try to config your tsconfig.json in the following way:
Check this out, this issue is similar to yours: https://github.com/TypeStrong/ts-node/issues/922