forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This isn't totally complete, but enough to get everything building and tests running manually. The next commit will make the build work fully.
- Loading branch information
1 parent
3ef80ba
commit fa26911
Showing
71 changed files
with
613 additions
and
1,201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
/// <reference types="node"/> | ||
|
||
import * as fs from "fs"; | ||
|
||
interface ServerCancellationToken { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,12 @@ | ||
{ | ||
"extends": "../tsconfig-base", | ||
"compilerOptions": { | ||
"outDir": "../../built/local", | ||
"outDir": "../../built/local/compiler", | ||
"types": ["node"] | ||
}, | ||
|
||
"references": [ | ||
], | ||
|
||
"files": [ | ||
"corePublic.ts", | ||
"core.ts", | ||
"debug.ts", | ||
"semver.ts", | ||
"performanceCore.ts", | ||
"performance.ts", | ||
"perfLogger.ts", | ||
"tracing.ts", | ||
|
||
"types.ts", | ||
"sys.ts", | ||
"path.ts", | ||
"diagnosticInformationMap.generated.ts", | ||
"scanner.ts", | ||
"utilitiesPublic.ts", | ||
"utilities.ts", | ||
"factory/baseNodeFactory.ts", | ||
"factory/parenthesizerRules.ts", | ||
"factory/nodeConverters.ts", | ||
"factory/nodeFactory.ts", | ||
"factory/emitNode.ts", | ||
"factory/emitHelpers.ts", | ||
"factory/nodeTests.ts", | ||
"factory/utilities.ts", | ||
"factory/utilitiesPublic.ts", | ||
"parser.ts", | ||
"commandLineParser.ts", | ||
"moduleNameResolver.ts", | ||
|
||
"binder.ts", | ||
"symbolWalker.ts", | ||
"checker.ts", | ||
"visitorPublic.ts", | ||
"sourcemap.ts", | ||
"transformers/utilities.ts", | ||
"transformers/destructuring.ts", | ||
"transformers/taggedTemplate.ts", | ||
"transformers/ts.ts", | ||
"transformers/classFields.ts", | ||
"transformers/typeSerializer.ts", | ||
"transformers/legacyDecorators.ts", | ||
"transformers/es2017.ts", | ||
"transformers/es2018.ts", | ||
"transformers/es2019.ts", | ||
"transformers/es2020.ts", | ||
"transformers/es2021.ts", | ||
"transformers/esnext.ts", | ||
"transformers/jsx.ts", | ||
"transformers/es2016.ts", | ||
"transformers/es2015.ts", | ||
"transformers/es5.ts", | ||
"transformers/generators.ts", | ||
"transformers/module/module.ts", | ||
"transformers/module/system.ts", | ||
"transformers/module/esnextAnd2015.ts", | ||
"transformers/module/node.ts", | ||
"transformers/declarations/diagnostics.ts", | ||
"transformers/declarations.ts", | ||
"transformer.ts", | ||
"emitter.ts", | ||
"watchUtilities.ts", | ||
"program.ts", | ||
"builderStatePublic.ts", | ||
"builderState.ts", | ||
"builder.ts", | ||
"builderPublic.ts", | ||
"resolutionCache.ts", | ||
"moduleSpecifiers.ts", | ||
"watch.ts", | ||
"watchPublic.ts", | ||
"tsbuild.ts", | ||
"tsbuildPublic.ts", | ||
"_namespaces/ts.ts", | ||
"_namespaces/ts.moduleSpecifiers.ts", | ||
"_namespaces/ts.performance.ts" | ||
] | ||
"include": ["**/*"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
{ | ||
"extends": "../tsconfig-library-base", | ||
"extends": "../tsconfig-base", | ||
"compilerOptions": { | ||
"target": "es2019", | ||
"lib": ["es2019"], | ||
"outDir": "../../built/local", | ||
"declaration": false, | ||
"sourceMap": true | ||
"outDir": "../../built/local/debug" | ||
}, | ||
"files": [ | ||
"dbg.ts", | ||
"_namespaces/Debug.ts" | ||
] | ||
"include": ["**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,10 @@ | ||
{ | ||
"extends": "../tsconfig-base", | ||
"compilerOptions": { | ||
"outDir": "../../built/local", | ||
"experimentalDecorators": true | ||
"outDir": "../../built/local/deprecatedCompat" | ||
}, | ||
"references": [ | ||
{ "path": "../compiler" } | ||
], | ||
"files": [ | ||
"deprecations.ts", | ||
"4.0/nodeFactoryTopLevelExports.ts", | ||
"4.0/renamedNodeTests.ts", | ||
"4.0/renamedMapInterfaces.ts", | ||
"4.2/renamedNodeTests.ts", | ||
"4.2/abstractConstructorTypes.ts", | ||
"4.6/importTypeAssertions.ts", | ||
"4.7/typeParameterModifiers.ts", | ||
"4.8/mergeDecoratorsAndModifiers.ts", | ||
"_namespaces/ts.ts" | ||
] | ||
} | ||
"include": ["**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
{ | ||
"extends": "../tsconfig-base", | ||
"compilerOptions": { | ||
"outDir": "../../built/local" | ||
"outDir": "../../built/local/executeCommandLine" | ||
}, | ||
|
||
"references": [ | ||
{ "path": "../compiler" } | ||
], | ||
|
||
"files": [ | ||
"executeCommandLine.ts", | ||
"_namespaces/ts.ts" | ||
] | ||
"include": ["**/*"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.