mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-04 21:53:42 -06:00
This step converts each file into an exported module by hoisting the namespace bodies into the global scope and transferring internal markers down onto declarations as needed. The namespaces are reconstructed as "barrel"-style modules, which are identical to the old namespace objects in structure. These reconstructed namespaces are then imported in the newly module-ified files, making existing expressions like "ts." valid.
16 lines
269 B
JSON
16 lines
269 B
JSON
{
|
|
"extends": "../tsconfig-base",
|
|
"compilerOptions": {
|
|
"outDir": "../../built/local"
|
|
},
|
|
|
|
"references": [
|
|
{ "path": "../compiler" }
|
|
],
|
|
|
|
"files": [
|
|
"executeCommandLine.ts",
|
|
"_namespaces/ts.ts"
|
|
]
|
|
}
|