Skip to content

Commit e29cade

Browse files
trivikrsrchase
authored andcommitted
feat(non-clients): remove comments from transpiled JS files (#2813)
1 parent a26c788 commit e29cade

File tree

144 files changed

+396
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+396
-108
lines changed

packages/abort-controller/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"scripts": {
99
"build:cjs": "tsc -p tsconfig.cjs.json",
1010
"build:es": "tsc -p tsconfig.es.json",
11-
"build": "yarn build:es && yarn build:cjs",
11+
"build:types": "tsc -p tsconfig.types.json",
12+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
1213
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
1314
"test": "jest"
1415
},

packages/abort-controller/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"stripInternal": true,
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/cjs",
76
"baseUrl": "."

packages/abort-controller/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"compilerOptions": {
33
"lib": ["es5", "es2015.collection"],
44
"stripInternal": true,
5-
"declarationDir": "./dist/types",
65
"rootDir": "./src",
76
"outDir": "./dist/es",
87
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/chunked-blob-reader-native/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"build:cjs": "tsc -p tsconfig.cjs.json",
66
"build:es": "tsc -p tsconfig.es.json",
7-
"build": "yarn build:es && yarn build:cjs",
7+
"build:types": "tsc -p tsconfig.types.json",
8+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
89
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
910
"test": "jest"
1011
},

packages/chunked-blob-reader-native/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/chunked-blob-reader-native/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["dom", "es5", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.symbol.wellknown"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/chunked-blob-reader/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"build:cjs": "tsc -p tsconfig.cjs.json",
66
"build:es": "tsc -p tsconfig.es.json",
7-
"build": "yarn build:es && yarn build:cjs",
7+
"build:types": "tsc -p tsconfig.types.json",
8+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
89
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
910
"test": "jest"
1011
},

packages/chunked-blob-reader/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/chunked-blob-reader/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["dom", "es5", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.symbol.wellknown"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/config-resolver/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"build:cjs": "tsc -p tsconfig.cjs.json",
66
"build:es": "tsc -p tsconfig.es.json",
7-
"build": "yarn build:es && yarn build:cjs",
7+
"build:types": "tsc -p tsconfig.types.json",
8+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
89
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
910
"test": "jest"
1011
},

packages/config-resolver/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/config-resolver/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["es5", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.symbol.wellknown"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/credential-provider-imds/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"scripts": {
88
"build:cjs": "tsc -p tsconfig.cjs.json",
99
"build:es": "tsc -p tsconfig.es.json",
10-
"build": "yarn build:es && yarn build:cjs",
10+
"build:types": "tsc -p tsconfig.types.json",
11+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
1112
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
1213
"test": "jest"
1314
},

packages/credential-provider-imds/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/credential-provider-imds/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["es5", "es2015.promise", "es2015.collection"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/eventstream-serde-browser/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"build:cjs": "tsc -p tsconfig.cjs.json",
66
"build:es": "tsc -p tsconfig.es.json",
7-
"build": "yarn build:es && yarn build:cjs",
7+
"build:types": "tsc -p tsconfig.types.json",
8+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
89
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
910
"test": "jest"
1011
},

packages/eventstream-serde-browser/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/eventstream-serde-browser/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["es2018.asynciterable", "DOM"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/eventstream-serde-config-resolver/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"build:cjs": "tsc -p tsconfig.cjs.json",
66
"build:es": "tsc -p tsconfig.es.json",
7-
"build": "yarn build:es && yarn build:cjs",
7+
"build:types": "tsc -p tsconfig.types.json",
8+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
89
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
910
"test": "jest"
1011
},

packages/eventstream-serde-config-resolver/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/eventstream-serde-config-resolver/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["es2018.asynciterable"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/eventstream-serde-node/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"build:cjs": "tsc -p tsconfig.cjs.json",
66
"build:es": "tsc -p tsconfig.es.json",
7-
"build": "yarn build:es && yarn build:cjs",
7+
"build:types": "tsc -p tsconfig.types.json",
8+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
89
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
910
"test": "jest"
1011
},

packages/eventstream-serde-node/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/eventstream-serde-node/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["es2018.asynciterable"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/eventstream-serde-universal/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"build:cjs": "tsc -p tsconfig.cjs.json",
66
"build:es": "tsc -p tsconfig.es.json",
7-
"build": "yarn build:es && yarn build:cjs",
7+
"build:types": "tsc -p tsconfig.types.json",
8+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
89
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
910
"test": "jest"
1011
},

packages/eventstream-serde-universal/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/eventstream-serde-universal/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["es2018.asynciterable"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/fetch-http-handler/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"scripts": {
66
"build:cjs": "tsc -p tsconfig.cjs.json",
77
"build:es": "tsc -p tsconfig.es.json",
8-
"build": "yarn build:es && yarn build:cjs",
8+
"build:types": "tsc -p tsconfig.types.json",
9+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
910
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
1011
"test": "jest --coverage && karma start karma.conf.js"
1112
},

packages/fetch-http-handler/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/fetch-http-handler/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["dom", "es5", "es2015.promise", "es2015.iterable"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/hash-blob-browser/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"build:cjs": "tsc -p tsconfig.cjs.json",
66
"build:es": "tsc -p tsconfig.es.json",
7-
"build": "yarn build:es && yarn build:cjs",
7+
"build:types": "tsc -p tsconfig.types.json",
8+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
89
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
910
"test": "karma start karma.conf.js"
1011
},

packages/hash-blob-browser/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"declarationDir": "./dist/types",
43
"rootDir": "./src",
54
"outDir": "./dist/cjs",
65
"baseUrl": "."

packages/hash-blob-browser/tsconfig.es.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"lib": ["dom", "es5", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.symbol.wellknown"],
4-
"declarationDir": "./dist/types",
54
"rootDir": "./src",
65
"outDir": "./dist/es",
76
"baseUrl": "."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "./src",
4+
"declarationDir": "./dist/types",
5+
"baseUrl": "."
6+
},
7+
"extends": "../../tsconfig.types.json",
8+
"include": ["src/"]
9+
}

packages/hash-node/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"scripts": {
55
"build:cjs": "tsc -p tsconfig.cjs.json",
66
"build:es": "tsc -p tsconfig.es.json",
7-
"build": "yarn build:es && yarn build:cjs",
7+
"build:types": "tsc -p tsconfig.types.json",
8+
"build": "yarn build:cjs && yarn build:es && yarn build:types",
89
"downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
910
"test": "jest"
1011
},

0 commit comments

Comments
 (0)