7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
import path from 'node:path';
|
|
|
|
console.log('path', path.join('src', 'index.ts'));
|
|
export const test = () => {
|
|
return 'test';
|
|
};
|