@effect/opentelemetry 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ WIP.
2
+
3
+ Docs: https://effect-ts.github.io/io
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ export {};
5
+ //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["./src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,CAAA"}
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=index.js.map
package/index.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":[],"sources":["./src/index.ts"],"sourcesContent":[null],"mappings":""}
package/mjs/index.mjs ADDED
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":[null],"mappings":""}
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@effect/opentelemetry",
3
+ "version": "0.0.0",
4
+ "license": "MIT",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/Effect-TS/opentelemetry.git"
8
+ },
9
+ "dependencies": {
10
+ "@effect/data": "^0.2.0",
11
+ "@effect/io": "^0.3.0",
12
+ "@opentelemetry/api": "^1.4.0",
13
+ "@opentelemetry/sdk-metrics": "^1.9.1",
14
+ "@opentelemetry/sdk-trace-base": "^1.9.1"
15
+ },
16
+ "main": "./index.js",
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "sideEffects": [],
21
+ "exports": {
22
+ ".": {
23
+ "import": {
24
+ "types": "./index.d.ts",
25
+ "default": "./mjs/index.mjs"
26
+ },
27
+ "require": {
28
+ "types": "./index.d.ts",
29
+ "default": "./index.js"
30
+ }
31
+ },
32
+ "./*": {
33
+ "import": {
34
+ "types": "./*.d.ts",
35
+ "default": "./mjs/*.mjs"
36
+ },
37
+ "require": {
38
+ "types": "./*.d.ts",
39
+ "default": "./*.js"
40
+ }
41
+ }
42
+ }
43
+ }
package/src/index.ts ADDED
@@ -0,0 +1,4 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ export {}
@@ -0,0 +1,70 @@
1
+ {
2
+ "compilerOptions": {
3
+ "moduleDetection": "force",
4
+ "composite": true,
5
+ "downlevelIteration": true,
6
+ "resolveJsonModule": true,
7
+ "esModuleInterop": true,
8
+ "declaration": true,
9
+ "skipLibCheck": true,
10
+ "emitDecoratorMetadata": true,
11
+ "experimentalDecorators": true,
12
+ "preserveSymlinks": true,
13
+ "moduleResolution": "node",
14
+ "noEmit": false,
15
+ "lib": [
16
+ "ES2021"
17
+ ],
18
+ "sourceMap": true,
19
+ "declarationMap": true,
20
+ "strict": true,
21
+ "noImplicitReturns": false,
22
+ "noUnusedLocals": true,
23
+ "noUnusedParameters": false,
24
+ "noFallthroughCasesInSwitch": true,
25
+ "noEmitOnError": false,
26
+ "noErrorTruncation": false,
27
+ "allowJs": false,
28
+ "checkJs": false,
29
+ "forceConsistentCasingInFileNames": true,
30
+ "suppressImplicitAnyIndexErrors": true,
31
+ "stripInternal": true,
32
+ "noImplicitAny": true,
33
+ "noImplicitThis": true,
34
+ "noUncheckedIndexedAccess": false,
35
+ "strictNullChecks": true,
36
+ "baseUrl": ".",
37
+ "target": "ES2021",
38
+ "module": "ES6",
39
+ "incremental": true,
40
+ "removeComments": false,
41
+ "paths": {
42
+ "@effect/opentelemetry": [
43
+ "./src/index.ts"
44
+ ],
45
+ "@effect/opentelemetry/test/*": [
46
+ "./test/*"
47
+ ],
48
+ "@effect/opentelemetry/examples/*": [
49
+ "./examples/*"
50
+ ],
51
+ "@effect/opentelemetry/*": [
52
+ "./src/*"
53
+ ]
54
+ },
55
+ "plugins": [
56
+ {
57
+ "name": "@effect/language-service",
58
+ "diagnostics": {
59
+ "1002": "none"
60
+ }
61
+ }
62
+ ]
63
+ },
64
+ "include": [],
65
+ "exclude": [
66
+ "node_modules",
67
+ "build",
68
+ "lib"
69
+ ]
70
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "./tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "outDir": "build/esm",
5
+ "declarationDir": "build/dts",
6
+ "tsBuildInfoFile": "build/tsbuildinfo/esm.tsbuildinfo",
7
+ "rootDir": "src"
8
+ },
9
+ "include": ["src/**/*.ts"]
10
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": "./tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "tsBuildInfoFile": "build/tsbuildinfo/examples.tsbuildinfo",
5
+ "rootDir": "examples",
6
+ "module": "CommonJS",
7
+ "outDir": "build/examples"
8
+ },
9
+ "include": ["examples/**/*.ts"],
10
+ "references": [{ "path": "./tsconfig.build.json" }]
11
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "./tsconfig.base.json",
3
+ "references": [
4
+ { "path": "./tsconfig.build.json" },
5
+ { "path": "./tsconfig.test.json" },
6
+ { "path": "./tsconfig.examples.json" }
7
+ ]
8
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "compilerOptions": {
3
+ "noEmit": true,
4
+ "allowJs": true,
5
+ "baseUrl": ".",
6
+ "paths": {
7
+ "@effect/io": ["./build/esm/index.js"],
8
+ "@effect/io/*": ["./build/esm/*"]
9
+ }
10
+ },
11
+ "include": ["./build/esm/**/*.js"]
12
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "./tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "tsBuildInfoFile": "build/tsbuildinfo/test.tsbuildinfo",
5
+ "rootDir": "./",
6
+ "noEmit": true,
7
+ "types": ["vitest/globals", "node"]
8
+ },
9
+ "include": ["test/**/*.ts", "src/**/*.ts"]
10
+ }