-
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 app aiming at modern browsers
- Loading branch information
1 parent
c160ad8
commit 05d08e4
Showing
79 changed files
with
789 additions
and
378 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
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
11 changes: 11 additions & 0 deletions
11
experimental/packages/opentelemetry-api-metrics/tsconfig.cjs.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.json", | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"outDir": "build" | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"test/**/*.ts" | ||
] | ||
} |
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" | ||
] | ||
} |
14 changes: 6 additions & 8 deletions
14
experimental/packages/opentelemetry-api-metrics/tsconfig.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 |
---|---|---|
@@ -1,11 +1,9 @@ | ||
{ | ||
"extends": "../../../tsconfig.es5.json", | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"outDir": "build" | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"test/**/*.ts" | ||
"extends": "../../../tsconfig.base.json", | ||
"files": [], | ||
"references": [ | ||
{ "path": "./tsconfig.cjs.json" }, | ||
{ "path": "./tsconfig.esm.json" }, | ||
{ "path": "./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
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
19 changes: 19 additions & 0 deletions
19
experimental/packages/opentelemetry-exporter-otlp-http/tsconfig.cjs.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,19 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"outDir": "build" | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"test/**/*.ts" | ||
], | ||
"references": [ | ||
{ | ||
"path": "../opentelemetry-api-metrics/tsconfig.cjs.json" | ||
}, | ||
{ | ||
"path": "../opentelemetry-sdk-metrics-base/tsconfig.cjs.json" | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
experimental/packages/opentelemetry-exporter-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,19 @@ | ||
{ | ||
"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" | ||
}, | ||
{ | ||
"path": "../opentelemetry-sdk-metrics-base/tsconfig.esm2015.json" | ||
} | ||
] | ||
} |
18 changes: 4 additions & 14 deletions
18
experimental/packages/opentelemetry-exporter-otlp-http/tsconfig.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 |
---|---|---|
@@ -1,19 +1,9 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"outDir": "build" | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"test/**/*.ts" | ||
], | ||
"files": [], | ||
"references": [ | ||
{ | ||
"path": "../opentelemetry-api-metrics" | ||
}, | ||
{ | ||
"path": "../opentelemetry-sdk-metrics-base" | ||
} | ||
{ "path": "./tsconfig.cjs.json" }, | ||
{ "path": "./tsconfig.esm.json" }, | ||
{ "path": "./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
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
17 changes: 17 additions & 0 deletions
17
experimental/packages/opentelemetry-instrumentation-fetch/tsconfig.cjs.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,17 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"outDir": "build", | ||
"skipLibCheck": true | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"test/**/*.ts" | ||
], | ||
"references": [ | ||
{ | ||
"path": "../opentelemetry-instrumentation/tsconfig.cjs.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" | ||
} | ||
] | ||
} |
16 changes: 4 additions & 12 deletions
16
experimental/packages/opentelemetry-instrumentation-fetch/tsconfig.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 |
---|---|---|
@@ -1,17 +1,9 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"outDir": "build", | ||
"skipLibCheck": true | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"test/**/*.ts" | ||
], | ||
"files": [], | ||
"references": [ | ||
{ | ||
"path": "../opentelemetry-instrumentation" | ||
} | ||
{ "path": "./tsconfig.cjs.json" }, | ||
{ "path": "./tsconfig.esm.json" }, | ||
{ "path": "./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
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
17 changes: 17 additions & 0 deletions
17
experimental/packages/opentelemetry-instrumentation-xml-http-request/tsconfig.cjs.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,17 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"outDir": "build", | ||
"skipLibCheck": true | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"test/**/*.ts" | ||
], | ||
"references": [ | ||
{ | ||
"path": "../opentelemetry-instrumentation/tsconfig.cjs.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" | ||
} | ||
] | ||
} |
Oops, something went wrong.