node-typescript-compiler
Version:
Exposes typescript compiler (tsc) as a node.js module
16 lines (10 loc) • 306 B
JavaScript
import { fileURLToPath } from 'node:url'
import path from 'node:path'
/////////////////////////////////////////////////
const LIB = 'node-typescript-compiler'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
/////////////////////////////////////////////////
export {
LIB,
__dirname,
}