|
| 1 | +Input:: |
| 2 | +//// [/lib/lib.d.ts] |
| 3 | +/// <reference no-default-lib="true"/> |
| 4 | +interface Boolean {} |
| 5 | +interface Function {} |
| 6 | +interface CallableFunction {} |
| 7 | +interface NewableFunction {} |
| 8 | +interface IArguments {} |
| 9 | +interface Number { toExponential: any; } |
| 10 | +interface Object {} |
| 11 | +interface RegExp {} |
| 12 | +interface String { charAt: any; } |
| 13 | +interface Array<T> { length: number; [n: number]: T; } |
| 14 | +interface ReadonlyArray<T> {} |
| 15 | +declare const console: { log(msg: any): void; }; |
| 16 | + |
| 17 | +//// [/src/shared/index.ts] |
| 18 | +export const a: Unrestricted = 1; |
| 19 | + |
| 20 | +//// [/src/shared/tsconfig-base.json] |
| 21 | +{"include":["./typings-base/"]} |
| 22 | + |
| 23 | +//// [/src/shared/tsconfig.json] |
| 24 | +{"extends":"./tsconfig-base.json","compilerOptions":{"composite":true,"outDir":"../target-tsc-build/","rootDir":".."},"files":["./index.ts"]} |
| 25 | + |
| 26 | +//// [/src/shared/typings-base/globals.d.ts] |
| 27 | +type Unrestricted = any; |
| 28 | + |
| 29 | +//// [/src/tsconfig.json] |
| 30 | + |
| 31 | + |
| 32 | +//// [/src/webpack/index.ts] |
| 33 | +export const b: Unrestricted = 1; |
| 34 | + |
| 35 | +//// [/src/webpack/tsconfig.json] |
| 36 | +{"extends":"../shared/tsconfig-base.json","compilerOptions":{"composite":true,"outDir":"../target-tsc-build/","rootDir":".."},"files":["./index.ts"],"references":[{"path":"../shared/tsconfig.json"}]} |
| 37 | + |
| 38 | + |
| 39 | + |
| 40 | +Output:: |
| 41 | +/lib/tsc --b /src/webpack/tsconfig.json --v --listFiles |
| 42 | +[[90m12:00:00 AM[0m] Projects in this build: |
| 43 | + * src/shared/tsconfig.json |
| 44 | + * src/webpack/tsconfig.json |
| 45 | + |
| 46 | +[[90m12:00:00 AM[0m] Project 'src/shared/tsconfig.json' is out of date because output file 'src/target-tsc-build/shared/index.js' does not exist |
| 47 | + |
| 48 | +[[90m12:00:00 AM[0m] Building project '/src/shared/tsconfig.json'... |
| 49 | + |
| 50 | +/lib/lib.d.ts |
| 51 | +/src/shared/index.ts |
| 52 | +/src/shared/typings-base/globals.d.ts |
| 53 | +[[90m12:00:00 AM[0m] Project 'src/webpack/tsconfig.json' is out of date because output file 'src/target-tsc-build/webpack/index.js' does not exist |
| 54 | + |
| 55 | +[[90m12:00:00 AM[0m] Building project '/src/webpack/tsconfig.json'... |
| 56 | + |
| 57 | +/lib/lib.d.ts |
| 58 | +/src/webpack/index.ts |
| 59 | +/src/shared/typings-base/globals.d.ts |
| 60 | +exitCode:: ExitStatus.Success |
| 61 | + |
| 62 | + |
| 63 | +//// [/src/target-tsc-build/shared/index.d.ts] |
| 64 | +export declare const a: Unrestricted; |
| 65 | + |
| 66 | + |
| 67 | +//// [/src/target-tsc-build/shared/index.js] |
| 68 | +"use strict"; |
| 69 | +exports.__esModule = true; |
| 70 | +exports.a = void 0; |
| 71 | +exports.a = 1; |
| 72 | + |
| 73 | + |
| 74 | +//// [/src/target-tsc-build/shared/tsconfig.tsbuildinfo] |
| 75 | +{ |
| 76 | + "program": { |
| 77 | + "fileInfos": { |
| 78 | + "../../../lib/lib.d.ts": { |
| 79 | + "version": "3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };", |
| 80 | + "signature": "3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };", |
| 81 | + "affectsGlobalScope": true |
| 82 | + }, |
| 83 | + "../../shared/index.ts": { |
| 84 | + "version": "-22125360210-export const a: Unrestricted = 1;", |
| 85 | + "signature": "-478734393-export declare const a: Unrestricted;\r\n", |
| 86 | + "affectsGlobalScope": false |
| 87 | + }, |
| 88 | + "../../shared/typings-base/globals.d.ts": { |
| 89 | + "version": "4725476611-type Unrestricted = any;", |
| 90 | + "signature": "4725476611-type Unrestricted = any;", |
| 91 | + "affectsGlobalScope": true |
| 92 | + } |
| 93 | + }, |
| 94 | + "options": { |
| 95 | + "composite": true, |
| 96 | + "outDir": "..", |
| 97 | + "rootDir": "../..", |
| 98 | + "listFiles": true, |
| 99 | + "configFilePath": "../../shared/tsconfig.json" |
| 100 | + }, |
| 101 | + "referencedMap": {}, |
| 102 | + "exportedModulesMap": {}, |
| 103 | + "semanticDiagnosticsPerFile": [ |
| 104 | + "../../../lib/lib.d.ts", |
| 105 | + "../../shared/index.ts", |
| 106 | + "../../shared/typings-base/globals.d.ts" |
| 107 | + ] |
| 108 | + }, |
| 109 | + "version": "FakeTSVersion" |
| 110 | +} |
| 111 | + |
| 112 | +//// [/src/target-tsc-build/webpack/index.d.ts] |
| 113 | +export declare const b: Unrestricted; |
| 114 | + |
| 115 | + |
| 116 | +//// [/src/target-tsc-build/webpack/index.js] |
| 117 | +"use strict"; |
| 118 | +exports.__esModule = true; |
| 119 | +exports.b = void 0; |
| 120 | +exports.b = 1; |
| 121 | + |
| 122 | + |
| 123 | +//// [/src/target-tsc-build/webpack/tsconfig.tsbuildinfo] |
| 124 | +{ |
| 125 | + "program": { |
| 126 | + "fileInfos": { |
| 127 | + "../../../lib/lib.d.ts": { |
| 128 | + "version": "3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };", |
| 129 | + "signature": "3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };", |
| 130 | + "affectsGlobalScope": true |
| 131 | + }, |
| 132 | + "../../webpack/index.ts": { |
| 133 | + "version": "-14405273073-export const b: Unrestricted = 1;", |
| 134 | + "signature": "-5074241048-export declare const b: Unrestricted;\r\n", |
| 135 | + "affectsGlobalScope": false |
| 136 | + }, |
| 137 | + "../../shared/typings-base/globals.d.ts": { |
| 138 | + "version": "4725476611-type Unrestricted = any;", |
| 139 | + "signature": "4725476611-type Unrestricted = any;", |
| 140 | + "affectsGlobalScope": true |
| 141 | + } |
| 142 | + }, |
| 143 | + "options": { |
| 144 | + "composite": true, |
| 145 | + "outDir": "..", |
| 146 | + "rootDir": "../..", |
| 147 | + "listFiles": true, |
| 148 | + "configFilePath": "../../webpack/tsconfig.json" |
| 149 | + }, |
| 150 | + "referencedMap": {}, |
| 151 | + "exportedModulesMap": {}, |
| 152 | + "semanticDiagnosticsPerFile": [ |
| 153 | + "../../../lib/lib.d.ts", |
| 154 | + "../../shared/typings-base/globals.d.ts", |
| 155 | + "../../webpack/index.ts" |
| 156 | + ] |
| 157 | + }, |
| 158 | + "version": "FakeTSVersion" |
| 159 | +} |
| 160 | + |
0 commit comments