Skip to content

Commit

Permalink
Collapse core/compiler/parser into parser
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanCavanaugh committed Jun 12, 2018
1 parent 7553d90 commit 066b191
Show file tree
Hide file tree
Showing 31 changed files with 461 additions and 3,327 deletions.
1,459 changes: 438 additions & 1,021 deletions Jakefile.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions scripts/produceLKG.ts
@@ -0,0 +1,4 @@
/// <reference types="node" />

const fs = require('fs');

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
19 changes: 15 additions & 4 deletions src/compiler/tsconfig.json
Expand Up @@ -3,7 +3,22 @@
"compilerOptions": {
"outFile": "../../built/local/compiler.js"
},

"references": [],

"files": [
"core.ts",
"performance.ts",

"types.ts",
"sys.ts",
"diagnosticInformationMap.generated.ts",
"scanner.ts",
"utilities.ts",
"parser.ts",
"commandLineParser.ts",
"moduleNameResolver.ts",

"binder.ts",
"symbolWalker.ts",
"checker.ts",
Expand Down Expand Up @@ -36,9 +51,5 @@
"moduleSpecifiers.ts",
"watch.ts",
"tsbuild.ts"
],
"references": [
{ "path": "../core" },
{ "path": "../parser" }
]
}
File renamed without changes.
File renamed without changes.
11 changes: 0 additions & 11 deletions src/core/tsconfig.json

This file was deleted.

2 changes: 0 additions & 2 deletions src/harness/tsconfig.json
Expand Up @@ -11,8 +11,6 @@
]
},
"references": [
{ "path": "../core" },
{ "path": "../parser" },
{ "path": "../compiler" },
{ "path": "../services" },
{ "path": "../jsTyping" },
Expand Down
3 changes: 1 addition & 2 deletions src/jsTyping/tsconfig.json
Expand Up @@ -11,8 +11,7 @@
]
},
"references": [
{ "path": "../core" },
{ "path": "../parser" }
{ "path": "../compiler" }
],
"files": [
"shared.ts",
Expand Down
1,110 changes: 0 additions & 1,110 deletions src/parser/diagnosticInformationMap.generated.ts

This file was deleted.

1,101 changes: 0 additions & 1,101 deletions src/parser/diagnosticMessages.generated.json

This file was deleted.

19 changes: 0 additions & 19 deletions src/parser/tsconfig.json

This file was deleted.

2 changes: 0 additions & 2 deletions src/server/tsconfig.json
Expand Up @@ -9,8 +9,6 @@
]
},
"references": [
{ "path": "../core" },
{ "path": "../parser" },
{ "path": "../compiler" },
{ "path": "../jsTyping" },
{ "path": "../services" }
Expand Down
4 changes: 1 addition & 3 deletions src/services/tsconfig.json
Expand Up @@ -4,10 +4,8 @@
"outFile": "../../built/local/services.js"
},
"references": [
{ "path": "../core" },
{ "path": "../parser" },
{ "path": "../compiler" },
{ "path": "../jsTyping" },
{ "path": "../jsTyping" }
],
"files": [
"types.ts",
Expand Down
2 changes: 0 additions & 2 deletions src/testRunner/tsconfig.json
Expand Up @@ -14,8 +14,6 @@
]
},
"references": [
{ "path": "../core", "prepend": true },
{ "path": "../parser", "prepend": true },
{ "path": "../compiler", "prepend": true },
{ "path": "../services", "prepend": true },
{ "path": "../jsTyping", "prepend": true },
Expand Down
2 changes: 0 additions & 2 deletions src/tsc/tsconfig.json
Expand Up @@ -7,8 +7,6 @@
"tsc.ts"
],
"references": [
{ "path": "../core", "prepend": true },
{ "path": "../parser", "prepend": true },
{ "path": "../compiler", "prepend": true }
]
}
1 change: 0 additions & 1 deletion src/tsconfig.json
Expand Up @@ -4,7 +4,6 @@
"references": [
{ "path": "./tsc" },
{ "path": "./tsserver" },
{ "path": "./tsserverLibrary" },
{ "path": "./typingsInstaller" },
{ "path": "./watchGuard" },
{ "path": "./cancellationToken" },
Expand Down
2 changes: 0 additions & 2 deletions src/tsserver/tsconfig.json
Expand Up @@ -11,8 +11,6 @@
"server.ts"
],
"references": [
{ "path": "../core", "prepend": true },
{ "path": "../parser", "prepend": true },
{ "path": "../compiler", "prepend": true },
{ "path": "../services", "prepend": true },
{ "path": "../jsTyping", "prepend": true },
Expand Down
1 change: 0 additions & 1 deletion src/tsserverLibrary/empty.ts

This file was deleted.

19 changes: 0 additions & 19 deletions src/tsserverLibrary/tsconfig.json

This file was deleted.

1 change: 0 additions & 1 deletion src/typescriptServices/empty.ts

This file was deleted.

20 changes: 0 additions & 20 deletions src/typescriptServices/tsconfig.json

This file was deleted.

3 changes: 1 addition & 2 deletions src/typingsInstaller/tsconfig.json
Expand Up @@ -12,8 +12,7 @@
]
},
"references": [
{ "path": "../core", "prepend": true },
{ "path": "../parser", "prepend": true },
{ "path": "../compiler", "prepend": true },
{ "path": "../jsTyping", "prepend": true },
{ "path": "../typingsInstallerCore", "prepend": true }
],
Expand Down
3 changes: 1 addition & 2 deletions src/typingsInstallerCore/tsconfig.json
Expand Up @@ -11,8 +11,7 @@
]
},
"references": [
{ "path": "../core" },
{ "path": "../parser" },
{ "path": "../compiler" },
{ "path": "../jsTyping" }
],
"files": [
Expand Down

0 comments on commit 066b191

Please sign in to comment.