9 lines
161 B
TypeScript
Vendored
9 lines
161 B
TypeScript
Vendored
import path from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
|
|
export const npmDirectory = path.join(
|
|
path.dirname(fileURLToPath(import.meta.url)),
|
|
'..'
|
|
);
|