forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
39 lines (37 loc) · 1.13 KB
/
index.ts
File metadata and controls
39 lines (37 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
/**
* This package is used with
* [\@microsoft/rush-stack](https://www.npmjs.com/package/\@microsoft/rush-stack)
* to select a TypeScript compiler version.
*
* It provides a supported set of versions for the following components:
* - the TypeScript compiler
* - [tslint](https://github.com/palantir/tslint#readme)
* - [API Extractor](https://api-extractor.com/)
*
* @packageDocumentation
*/
export { ApiExtractorRunner } from './ApiExtractorRunner';
export {
RushStackCompilerBase,
IRushStackCompilerBaseOptions,
WriteFileIssueFunction
} from './RushStackCompilerBase';
export { StandardBuildFolders } from './StandardBuildFolders';
export {
TypescriptCompiler,
ITypescriptCompilerOptions
} from './TypescriptCompiler';
export {
ILintRunnerConfig
} from './ILintRunnerConfig';
export {
LintRunner
} from './LintRunner';
export {
ITslintRunnerConfig,
TslintRunner
} from './TslintRunner';
export { ToolPaths } from './ToolPaths';
export { ToolPackages } from './ToolPackages';