1 | import { Tree } from '@nrwl/devkit';
|
2 | import type * as ts from 'typescript';
|
3 | export { compileTypeScript } from './typescript/compilation';
|
4 | export type { TypeScriptCompilationOptions } from './typescript/compilation';
|
5 | export { findNodes } from './typescript/find-nodes';
|
6 | export { getSourceNodes } from './typescript/get-source-nodes';
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | export declare function resolveModuleByImport(importExpr: string, filePath: string, tsConfigPath: string): string;
|
15 | export declare function ensureTypescript(): typeof ts;
|
16 |
|
17 |
|
18 |
|
19 | export declare function getRelativePathToRootTsConfig(tree: Tree, targetPath: string): string;
|
20 |
|
21 |
|
22 |
|
23 | export declare function getRootTsConfigPathInTree(tree: Tree): string;
|