mirror of
https://github.com/danbulant/oxc
synced 2026-05-20 12:48:38 +00:00
| .. | ||
| scripts | ||
| CHANGELOG.md | ||
| package.json | ||
| README.md | ||
Oxc Transform
Isolated Declarations for Standalone DTS Emit
Based on Oxc and conforms to TypeScript Compiler's --isolated-declaration .d.ts emit.
This is still in alpha and may yield incorrect results, feel free to submit a bug report.
Usage
import assert from 'assert';
import oxc from 'oxc-transform';
const { sourceMap, sourceText, errors } = oxc.isolatedDeclaration('test.ts', 'class A {}', { sourcemap: true });
assert.equal(sourceText, 'declare class A {}\n');
assert.deepEqual(ret.sourceMap, {
mappings: 'AAAA,cAAM,EAAE,CAAE',
names: [],
sources: ['test.ts'],
sourcesContent: ['class A {}'],
});
assert(errors.length == 0);
API
export function isolatedDeclaration(
filename: string,
sourceText: string,
options: IsolatedDeclarationsOptions,
): IsolatedDeclarationsResult;
export interface IsolatedDeclarationsOptions {
sourcemap: boolean;
}
export interface IsolatedDeclarationsResult {
sourceText: string;
errors: Array<string>;
}