Skip to content

Commit 40f3f72

Browse files
committed
Get entrypoints working
1 parent b75e466 commit 40f3f72

File tree

36 files changed

+94
-125
lines changed

36 files changed

+94
-125
lines changed

Gulpfile.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -166,20 +166,20 @@ const buildServices = (() => {
166166
.pipe(rename("typescript.d.ts"))
167167
.pipe(dest("built/local"));
168168

169-
// create typescript_standalone.d.ts
170-
const createTypescriptStandaloneDts = () => src("built/local/typescriptServices.d.ts")
171-
.pipe(newer("built/local/typescript_standalone.d.ts"))
172-
.pipe(transform(content => content.replace(/declare (namespace|module) ts/g, 'declare module "typescript"')))
173-
.pipe(rename("typescript_standalone.d.ts"))
174-
.pipe(dest("built/local"));
169+
// // create typescript_standalone.d.ts
170+
// const createTypescriptStandaloneDts = () => src("built/local/typescriptServices.d.ts")
171+
// .pipe(newer("built/local/typescript_standalone.d.ts"))
172+
// .pipe(transform(content => content.replace(/declare (namespace|module) ts/g, 'declare module "typescript"')))
173+
// .pipe(rename("typescript_standalone.d.ts"))
174+
// .pipe(dest("built/local"));
175175

176176
return series(
177177
buildTypescriptServicesOut,
178178
createTypescriptServicesJs,
179179
createTypescriptServicesDts,
180180
createTypescriptJs,
181181
createTypescriptDts,
182-
createTypescriptStandaloneDts,
182+
// createTypescriptStandaloneDts,
183183
);
184184
})();
185185
task("services", series(preBuild, buildServices));

src/cancellationToken/tsconfig.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
{
2-
"extends": "../tsconfig-noncomposite-base",
2+
"extends": "../tsconfig-base",
33
"compilerOptions": {
4-
"outDir": "../../built/local/",
5-
"rootDir": ".",
6-
"composite": false,
7-
"declaration": false,
8-
"declarationMap": false,
9-
"removeComments": true,
10-
"incremental": false,
4+
"outDir": "../../built/local/cancellationToken",
115
"module": "commonjs",
126
"types": [
137
"node"

src/compiler/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-base",
33
"compilerOptions": {
4-
"outDir": "../../built/local",
4+
"outDir": "../../built/local/compiler",
55
"types": ["node"]
66
},
77

src/compiler/tsconfig.release.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/debug/tsconfig.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
{
2-
"extends": "../tsconfig-library-base",
2+
"extends": "../tsconfig-base",
33
"compilerOptions": {
44
"target": "es2019",
55
"lib": ["es2019"],
6-
"outDir": "../../built/local",
7-
"declaration": false,
8-
"sourceMap": true
6+
"outDir": "../../built/local/debug"
97
},
108
"files": [
119
"dbg.ts",

src/deprecatedCompat/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-base",
33
"compilerOptions": {
4-
"outDir": "../../built/local",
4+
"outDir": "../../built/local/deprecatedCompat",
55
"experimentalDecorators": true
66
},
77
"references": [
@@ -19,4 +19,4 @@
1919
"4.8/mergeDecoratorsAndModifiers.ts",
2020
"_namespaces/ts.ts"
2121
]
22-
}
22+
}

src/dynamicImportCompat/tsconfig.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
{
2-
"extends": "../tsconfig-library-base",
2+
"extends": "../tsconfig-base",
33
"compilerOptions": {
4-
"outDir": "../../built/local",
4+
"outDir": "../../built/local/dynamicImportCompat",
55
"rootDir": ".",
66
"target": "esnext",
77
"module": "esnext",
8-
"lib": ["esnext"],
9-
"declaration": false,
10-
"sourceMap": true,
11-
"tsBuildInfoFile": "../../built/local/dynamicImportCompat.tsbuildinfo"
8+
"lib": ["esnext"]
129
},
1310
"files": [
1411
"dynamicImportCompat.ts",

src/executeCommandLine/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-base",
33
"compilerOptions": {
4-
"outDir": "../../built/local"
4+
"outDir": "../../built/local/executeCommandLine"
55
},
66

77
"references": [

src/executeCommandLine/tsconfig.release.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/harness/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-base",
33
"compilerOptions": {
4-
"outDir": "../../built/local",
4+
"outDir": "../../built/local/harness",
55
"types": [
66
"node", "mocha", "chai"
77
],

0 commit comments

Comments
 (0)