Files
dts/src/test/path-test.ts
2026-02-17 20:29:25 +08:00

7 lines
130 B
TypeScript

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