[JS] Add ".js" suffix to all import statements to generate a browser compatible mjs version. (#7086)

This commit is contained in:
Timo Sturm
2022-02-08 21:21:20 +01:00
committed by GitHub
parent c85fb690f4
commit e910bddbcc
11 changed files with 44 additions and 44 deletions

View File

@@ -1,5 +1,5 @@
import { ByteBuffer } from './byte-buffer'
import { Builder } from './builder'
import { ByteBuffer } from './byte-buffer.js'
import { Builder } from './builder.js'
export type Offset = number;