| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 45c3c48 commit d1c6ff3
36 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -166,20 +166,20 @@ const buildServices = (() => { | |||
| 166 | 166 | .pipe(rename("typescript.d.ts")) | |
| 167 | 167 | .pipe(dest("built/local")); | |
| 168 | 168 | ||
| 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")); | ||
| 175 | 175 | ||
| 176 | 176 | return series( | |
| 177 | 177 | buildTypescriptServicesOut, | |
| 178 | 178 | createTypescriptServicesJs, | |
| 179 | 179 | createTypescriptServicesDts, | |
| 180 | 180 | createTypescriptJs, | |
| 181 | 181 | createTypescriptDts, | |
| 182 | - createTypescriptStandaloneDts, | ||
| 182 | + // createTypescriptStandaloneDts, | ||
| 183 | 183 | ); | |
| 184 | 184 | })(); | |
| 185 | 185 | task("services", series(preBuild, buildServices)); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,13 +1,7 @@ | |||
| 1 | 1 | { | |
| 2 | - "extends": "../tsconfig-noncomposite-base", | ||
| 2 | + "extends": "../tsconfig-base", | ||
| 3 | 3 | "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", | ||
| 11 | 5 | "module": "commonjs", | |
| 12 | 6 | "types": [ | |
| 13 | 7 | "node" | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "extends": "../tsconfig-base", | |
| 3 | 3 | "compilerOptions": { | |
| 4 | - "outDir": "../../built/local", | ||
| 4 | + "outDir": "../../built/local/compiler", | ||
| 5 | 5 | "types": ["node"] | |
| 6 | 6 | }, | |
| 7 | 7 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,11 +1,9 @@ | |||
| 1 | 1 | { | |
| 2 | - "extends": "../tsconfig-library-base", | ||
| 2 | + "extends": "../tsconfig-base", | ||
| 3 | 3 | "compilerOptions": { | |
| 4 | 4 | "target": "es2019", | |
| 5 | 5 | "lib": ["es2019"], | |
| 6 | - "outDir": "../../built/local", | ||
| 7 | - "declaration": false, | ||
| 8 | - "sourceMap": true | ||
| 6 | + "outDir": "../../built/local/debug" | ||
| 9 | 7 | }, | |
| 10 | 8 | "files": [ | |
| 11 | 9 | "dbg.ts", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "extends": "../tsconfig-base", | |
| 3 | 3 | "compilerOptions": { | |
| 4 | - "outDir": "../../built/local", | ||
| 4 | + "outDir": "../../built/local/deprecatedCompat", | ||
| 5 | 5 | "experimentalDecorators": true | |
| 6 | 6 | }, | |
| 7 | 7 | "references": [ | |
@@ -19,4 +19,4 @@ | |||
| 19 | 19 | "4.8/mergeDecoratorsAndModifiers.ts", | |
| 20 | 20 | "_namespaces/ts.ts" | |
| 21 | 21 | ] | |
| 22 | - } | ||
| 22 | + } | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,14 +1,11 @@ | |||
| 1 | 1 | { | |
| 2 | - "extends": "../tsconfig-library-base", | ||
| 2 | + "extends": "../tsconfig-base", | ||
| 3 | 3 | "compilerOptions": { | |
| 4 | - "outDir": "../../built/local", | ||
| 4 | + "outDir": "../../built/local/dynamicImportCompat", | ||
| 5 | 5 | "rootDir": ".", | |
| 6 | 6 | "target": "esnext", | |
| 7 | 7 | "module": "esnext", | |
| 8 | - "lib": ["esnext"], | ||
| 9 | - "declaration": false, | ||
| 10 | - "sourceMap": true, | ||
| 11 | - "tsBuildInfoFile": "../../built/local/dynamicImportCompat.tsbuildinfo" | ||
| 8 | + "lib": ["esnext"] | ||
| 12 | 9 | }, | |
| 13 | 10 | "files": [ | |
| 14 | 11 | "dynamicImportCompat.ts", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "extends": "../tsconfig-base", | |
| 3 | 3 | "compilerOptions": { | |
| 4 | - "outDir": "../../built/local" | ||
| 4 | + "outDir": "../../built/local/executeCommandLine" | ||
| 5 | 5 | }, | |
| 6 | 6 | ||
| 7 | 7 | "references": [ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "extends": "../tsconfig-base", | |
| 3 | 3 | "compilerOptions": { | |
| 4 | - "outDir": "../../built/local", | ||
| 4 | + "outDir": "../../built/local/harness", | ||
| 5 | 5 | "types": [ | |
| 6 | 6 | "node", "mocha", "chai" | |
| 7 | 7 | ], | |
| Back | FazBrowse Home | New Git URL |
0 commit comments