Rename 'compat' to 'deprecatedCompat'. (#41000)

This commit is contained in:
Daniel Rosenwasser 2020-11-02 14:25:12 -08:00 committed by GitHub
parent 075477f9cf
commit 373b352333
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 5 deletions

View file

@ -21,7 +21,7 @@ namespace ts {
let SourceFileConstructor: new (kind: SyntaxKind, pos?: number, end?: number) => Node;
/**
* NOTE: You should not use this, it is only exported to support `createNode` in `~/src/compat/deprecations.ts`.
* NOTE: You should not use this, it is only exported to support `createNode` in `~/src/deprecatedCompat/deprecations.ts`.
*/
/* @internal */
export const parseBaseNodeFactory: BaseNodeFactory = {

View file

@ -1,7 +1,7 @@
{
"extends": "../tsconfig-base",
"compilerOptions": {
"outFile": "../../built/local/compat.js"
"outFile": "../../built/local/deprecatedCompat.js"
},
"references": [
{ "path": "../compiler" }

View file

@ -15,6 +15,6 @@
{ "path": "../services", "prepend": true },
{ "path": "../jsTyping", "prepend": true },
{ "path": "../server", "prepend": true },
{ "path": "../compat", "prepend": true }
{ "path": "../deprecatedCompat", "prepend": true }
]
}

View file

@ -12,6 +12,6 @@
{ "path": "../jsTyping", "prepend": true },
{ "path": "../services", "prepend": true },
{ "path": "../server", "prepend": true },
{ "path": "../compat", "prepend": true }
{ "path": "../deprecatedCompat", "prepend": true }
]
}

View file

@ -11,6 +11,6 @@
{ "path": "../compiler", "prepend": true },
{ "path": "../jsTyping", "prepend": true },
{ "path": "../services", "prepend": true },
{ "path": "../compat", "prepend": true }
{ "path": "../deprecatedCompat", "prepend": true }
]
}