Try local import.

This commit is contained in:
Dillon Kearns 2022-07-05 15:56:48 -07:00
parent 6f35f55021
commit e3e0ffdd7e
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import kleur from "kleur";
import something from './something.ts'
kleur.enabled = true;
export async function environmentVariable(name) {
@ -15,7 +16,7 @@ export async function environmentVariable(name) {
}
export async function hello(name) {
return `149 ${name}!!`;
return `${something} 149 ${name}!!`;
}
function waitFor(ms) {

View File

@ -0,0 +1,4 @@
const something = 'abcd1234'
export default something