mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Get codebase building pre bundling
This isn't totally complete, but enough to get everything building and tests running manually. The next commit will make the build work fully.
This commit is contained in:
+2
-163
@@ -1,172 +1,11 @@
|
||||
{
|
||||
"extends": "../tsconfig-base",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../built/local"
|
||||
"outDir": "../../built/local/services"
|
||||
},
|
||||
"references": [
|
||||
{ "path": "../compiler" },
|
||||
{ "path": "../jsTyping" }
|
||||
],
|
||||
"files": [
|
||||
"types.ts",
|
||||
"utilities.ts",
|
||||
"exportInfoMap.ts",
|
||||
"classifier.ts",
|
||||
"classifier2020.ts",
|
||||
"stringCompletions.ts",
|
||||
"completions.ts",
|
||||
"documentHighlights.ts",
|
||||
"documentRegistry.ts",
|
||||
"importTracker.ts",
|
||||
"findAllReferences.ts",
|
||||
"callHierarchy.ts",
|
||||
"getEditsForFileRename.ts",
|
||||
"goToDefinition.ts",
|
||||
"jsDoc.ts",
|
||||
"navigateTo.ts",
|
||||
"navigationBar.ts",
|
||||
"organizeImports.ts",
|
||||
"getEditsForFileRename.ts",
|
||||
"outliningElementsCollector.ts",
|
||||
"patternMatcher.ts",
|
||||
"preProcess.ts",
|
||||
"rename.ts",
|
||||
"smartSelection.ts",
|
||||
"signatureHelp.ts",
|
||||
"inlayHints.ts",
|
||||
"sourcemaps.ts",
|
||||
"suggestionDiagnostics.ts",
|
||||
"symbolDisplay.ts",
|
||||
"transpile.ts",
|
||||
"formatting/formattingContext.ts",
|
||||
"formatting/formattingScanner.ts",
|
||||
"formatting/rule.ts",
|
||||
"formatting/rules.ts",
|
||||
"formatting/rulesMap.ts",
|
||||
"formatting/formatting.ts",
|
||||
"formatting/smartIndenter.ts",
|
||||
"textChanges.ts",
|
||||
"codeFixProvider.ts",
|
||||
"refactorProvider.ts",
|
||||
"codefixes/addConvertToUnknownForNonOverlappingTypes.ts",
|
||||
"codefixes/addEmptyExportDeclaration.ts",
|
||||
"codefixes/addMissingAsync.ts",
|
||||
"codefixes/addMissingAwait.ts",
|
||||
"codefixes/addMissingConst.ts",
|
||||
"codefixes/addMissingDeclareProperty.ts",
|
||||
"codefixes/addMissingInvocationForDecorator.ts",
|
||||
"codefixes/addNameToNamelessParameter.ts",
|
||||
"codefixes/addOptionalPropertyUndefined.ts",
|
||||
"codefixes/annotateWithTypeFromJSDoc.ts",
|
||||
"codefixes/convertFunctionToEs6Class.ts",
|
||||
"codefixes/convertToAsyncFunction.ts",
|
||||
"codefixes/convertToEsModule.ts",
|
||||
"codefixes/correctQualifiedNameToIndexedAccessType.ts",
|
||||
"codefixes/convertToTypeOnlyExport.ts",
|
||||
"codefixes/convertToTypeOnlyImport.ts",
|
||||
"codefixes/convertLiteralTypeToMappedType.ts",
|
||||
"codefixes/fixClassIncorrectlyImplementsInterface.ts",
|
||||
"codefixes/importFixes.ts",
|
||||
"codefixes/fixAddMissingConstraint.ts",
|
||||
"codefixes/fixOverrideModifier.ts",
|
||||
"codefixes/fixNoPropertyAccessFromIndexSignature.ts",
|
||||
"codefixes/fixImplicitThis.ts",
|
||||
"codefixes/fixImportNonExportedMember.ts",
|
||||
"codefixes/fixIncorrectNamedTupleSyntax.ts",
|
||||
"codefixes/fixSpelling.ts",
|
||||
"codefixes/returnValueCorrect.ts",
|
||||
"codefixes/fixAddMissingMember.ts",
|
||||
"codefixes/fixAddMissingNewOperator.ts",
|
||||
"codefixes/fixCannotFindModule.ts",
|
||||
"codefixes/fixClassDoesntImplementInheritedAbstractMember.ts",
|
||||
"codefixes/fixClassSuperMustPrecedeThisAccess.ts",
|
||||
"codefixes/fixConstructorForDerivedNeedSuperCall.ts",
|
||||
"codefixes/fixEnableExperimentalDecorators.ts",
|
||||
"codefixes/fixEnableJsxFlag.ts",
|
||||
"codefixes/fixNaNEquality.ts",
|
||||
"codefixes/fixModuleAndTargetOptions.ts",
|
||||
"codefixes/fixPropertyAssignment.ts",
|
||||
"codefixes/fixExtendsInterfaceBecomesImplements.ts",
|
||||
"codefixes/fixForgottenThisPropertyAccess.ts",
|
||||
"codefixes/fixInvalidJsxCharacters.ts",
|
||||
"codefixes/fixUnmatchedParameter.ts",
|
||||
"codefixes/fixUnreferenceableDecoratorMetadata.ts",
|
||||
"codefixes/fixUnusedIdentifier.ts",
|
||||
"codefixes/fixUnreachableCode.ts",
|
||||
"codefixes/fixUnusedLabel.ts",
|
||||
"codefixes/fixJSDocTypes.ts",
|
||||
"codefixes/fixMissingCallParentheses.ts",
|
||||
"codefixes/fixAwaitInSyncFunction.ts",
|
||||
"codefixes/fixPropertyOverrideAccessor.ts",
|
||||
"codefixes/inferFromUsage.ts",
|
||||
"codefixes/fixReturnTypeInAsyncFunction.ts",
|
||||
"codefixes/disableJsDiagnostics.ts",
|
||||
"codefixes/helpers.ts",
|
||||
"codefixes/generateAccessors.ts",
|
||||
"codefixes/fixInvalidImportSyntax.ts",
|
||||
"codefixes/fixStrictClassInitialization.ts",
|
||||
"codefixes/requireInTs.ts",
|
||||
"codefixes/useDefaultImport.ts",
|
||||
"codefixes/useBigintLiteral.ts",
|
||||
"codefixes/fixAddModuleReferTypeMissingTypeof.ts",
|
||||
"codefixes/wrapJsxInFragment.ts",
|
||||
"codefixes/convertToMappedObjectType.ts",
|
||||
"codefixes/removeAccidentalCallParentheses.ts",
|
||||
"codefixes/removeUnnecessaryAwait.ts",
|
||||
"codefixes/splitTypeOnlyImport.ts",
|
||||
"codefixes/convertConstToLet.ts",
|
||||
"codefixes/fixExpectedComma.ts",
|
||||
"codefixes/fixAddVoidToPromise.ts",
|
||||
"refactors/convertExport.ts",
|
||||
"refactors/convertImport.ts",
|
||||
"refactors/convertToOptionalChainExpression.ts",
|
||||
"refactors/convertOverloadListToSingleSignature.ts",
|
||||
"refactors/extractSymbol.ts",
|
||||
"refactors/extractType.ts",
|
||||
"refactors/generateGetAccessorAndSetAccessor.ts",
|
||||
"refactors/helpers.ts",
|
||||
"refactors/moveToNewFile.ts",
|
||||
"refactors/addOrRemoveBracesToArrowFunction.ts",
|
||||
"refactors/convertParamsToDestructuredObject.ts",
|
||||
"refactors/convertStringOrTemplateLiteral.ts",
|
||||
"refactors/convertArrowFunctionOrFunctionExpression.ts",
|
||||
"refactors/inferFunctionReturnType.ts",
|
||||
"services.ts",
|
||||
"breakpoints.ts",
|
||||
"transform.ts",
|
||||
"shims.ts",
|
||||
"globalThisShim.ts",
|
||||
"exportAsModule.ts",
|
||||
"_namespaces/ts.BreakpointResolver.ts",
|
||||
"_namespaces/ts.ts",
|
||||
"_namespaces/ts.CallHierarchy.ts",
|
||||
"_namespaces/ts.classifier.v2020.ts",
|
||||
"_namespaces/ts.classifier.ts",
|
||||
"_namespaces/ts.codefix.ts",
|
||||
"_namespaces/ts.Completions.ts",
|
||||
"_namespaces/ts.FindAllReferences.ts",
|
||||
"_namespaces/ts.GoToDefinition.ts",
|
||||
"_namespaces/ts.InlayHints.ts",
|
||||
"_namespaces/ts.JsDoc.ts",
|
||||
"_namespaces/ts.NavigateTo.ts",
|
||||
"_namespaces/ts.NavigationBar.ts",
|
||||
"_namespaces/ts.OrganizeImports.ts",
|
||||
"_namespaces/ts.OutliningElementsCollector.ts",
|
||||
"_namespaces/ts.refactor.ts",
|
||||
"_namespaces/ts.Rename.ts",
|
||||
"_namespaces/ts.SignatureHelp.ts",
|
||||
"_namespaces/ts.SmartSelectionRange.ts",
|
||||
"_namespaces/ts.Completions.StringCompletions.ts",
|
||||
"_namespaces/ts.SymbolDisplay.ts",
|
||||
"_namespaces/ts.textChanges.ts",
|
||||
"_namespaces/ts.formatting.ts",
|
||||
"_namespaces/ts.refactor.addOrRemoveBracesToArrowFunction.ts",
|
||||
"_namespaces/ts.refactor.convertArrowFunctionOrFunctionExpression.ts",
|
||||
"_namespaces/ts.refactor.convertParamsToDestructuredObject.ts",
|
||||
"_namespaces/ts.refactor.convertStringOrTemplateLiteral.ts",
|
||||
"_namespaces/ts.refactor.convertToOptionalChainExpression.ts",
|
||||
"_namespaces/ts.refactor.extractSymbol.ts",
|
||||
"_namespaces/ts.refactor.generateGetAccessorAndSetAccessor.ts",
|
||||
"_namespaces/ts.refactor.inferFunctionReturnType.ts"
|
||||
]
|
||||
"include": ["**/*"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user