Incorrect import causes typescript compilation issue
Describe the bug
In https://github.com/Tonejs/Tone.js/blob/dev/Tone/core/type/Units.ts there is the import statement
import { Note } from "./NoteUnits";
This causes a TS compilation error error TS1484: 'Note' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.
To Reproduce
Add tone.js as a dependency in a project with 'verbatimModuleSyntax' is enabled.
It seems like Tone.js isn't quite ready for verbatimModuleSyntax, from what i'm understanding, in order to get it there, all of the type imports would need to be separated out from the rest of the imports
You still having this issue? i'm not able to reproduce this anymore
Please provide a way to reproduce the issue. Issues without a minimal (Tone.js-only) repro will be closed. A Tone.js-only repro helps ensure that the issue is not caused by another library.