-
Notifications
You must be signed in to change notification settings - Fork 821
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add esm2015 entry for web apps aiming at modern browsers
- Loading branch information
1 parent
dded3f8
commit 36705eb
Showing
55 changed files
with
561 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
experimental/packages/opentelemetry-api-metrics/tsconfig.all.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"files": [], | ||
"references": [ | ||
{ "path": "./tsconfig.json" }, | ||
{ "path": "./tsconfig.esm.json" }, | ||
{ "path": "./tsconfig.esm2015.json" } | ||
] | ||
} |
11 changes: 11 additions & 0 deletions
11
experimental/packages/opentelemetry-api-metrics/tsconfig.esm2015.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.esm2015.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "build/esm2015", | ||
"tsBuildInfoFile": "build/esm2015/tsconfig.esm2015.tsbuildinfo" | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
experimental/packages/opentelemetry-exporter-metrics-otlp-http/tsconfig.all.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"files": [], | ||
"references": [ | ||
{ "path": "./tsconfig.json" }, | ||
{ "path": "./tsconfig.esm.json" }, | ||
{ "path": "./tsconfig.esm2015.json" } | ||
] | ||
} |
16 changes: 16 additions & 0 deletions
16
experimental/packages/opentelemetry-exporter-metrics-otlp-http/tsconfig.esm2015.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.esm2015.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "build/esm2015", | ||
"tsBuildInfoFile": "build/esm2015/tsconfig.esm2015.tsbuildinfo" | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"references": [ | ||
{ | ||
"path": "../opentelemetry-exporter-trace-otlp-http/tsconfig.esm2015.json" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
experimental/packages/opentelemetry-exporter-trace-otlp-http/tsconfig.all.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"files": [], | ||
"references": [ | ||
{ "path": "./tsconfig.json" }, | ||
{ "path": "./tsconfig.esm.json" }, | ||
{ "path": "./tsconfig.esm2015.json" } | ||
] | ||
} |
11 changes: 11 additions & 0 deletions
11
experimental/packages/opentelemetry-exporter-trace-otlp-http/tsconfig.esm2015.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.esm2015.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "build/esm2015", | ||
"tsBuildInfoFile": "build/esm2015/tsconfig.esm2015.tsbuildinfo" | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
experimental/packages/opentelemetry-instrumentation-fetch/tsconfig.all.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"files": [], | ||
"references": [ | ||
{ "path": "./tsconfig.json" }, | ||
{ "path": "./tsconfig.esm.json" }, | ||
{ "path": "./tsconfig.esm2015.json" } | ||
] | ||
} |
16 changes: 16 additions & 0 deletions
16
experimental/packages/opentelemetry-instrumentation-fetch/tsconfig.esm2015.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.esm2015.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "build/esm2015", | ||
"tsBuildInfoFile": "build/esm2015/tsconfig.esm2015.tsbuildinfo" | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"references": [ | ||
{ | ||
"path": "../opentelemetry-instrumentation/tsconfig.esm2015.json" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
experimental/packages/opentelemetry-instrumentation-xml-http-request/tsconfig.all.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"files": [], | ||
"references": [ | ||
{ "path": "./tsconfig.json" }, | ||
{ "path": "./tsconfig.esm.json" }, | ||
{ "path": "./tsconfig.esm2015.json" } | ||
] | ||
} |
16 changes: 16 additions & 0 deletions
16
experimental/packages/opentelemetry-instrumentation-xml-http-request/tsconfig.esm2015.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.esm2015.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "build/esm2015", | ||
"tsBuildInfoFile": "build/esm2015/tsconfig.esm2015.tsbuildinfo" | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"references": [ | ||
{ | ||
"path": "../opentelemetry-instrumentation/tsconfig.esm2015.json" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
experimental/packages/opentelemetry-instrumentation/tsconfig.all.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"files": [], | ||
"references": [ | ||
{ "path": "./tsconfig.json" }, | ||
{ "path": "./tsconfig.esm.json" }, | ||
{ "path": "./tsconfig.esm2015.json" } | ||
] | ||
} |
16 changes: 16 additions & 0 deletions
16
experimental/packages/opentelemetry-instrumentation/tsconfig.esm2015.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.esm2015.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "build/esm2015", | ||
"tsBuildInfoFile": "build/esm2015/tsconfig.esm2015.tsbuildinfo" | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"references": [ | ||
{ | ||
"path": "../opentelemetry-api-metrics/tsconfig.esm2015.json" | ||
} | ||
] | ||
} |
Oops, something went wrong.