Can't import local modules in edge functions

Hello, I’ve got an issue when trying to use local modules while developing edge functions.

see this example repo:

When running netlify dev i get the error

TypeError: Module not found "file:///Users/***/Documents/projects/edge-test/edge-functions/utils/test".
    at file:///Users/***/Documents/projects/edge-test/edge-functions/test_func.ts:2:23
    at async file:///Users/***/Documents/projects/edge-test/.netlify/edge-functions-serve/dev.js:7:35 {
  code: "ERR_MODULE_NOT_FOUND"
}

shouldn’t this be possible to do?

The problem was not using “.ts” in the import statement.