This commit is contained in:
2026-02-17 20:29:25 +08:00
commit 280bd01319
11 changed files with 406 additions and 0 deletions

6
src/test/path-test.ts Normal file
View File

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