We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 698008c commit 7790b3cCopy full SHA for 7790b3c
2 files changed
packages/runtime-core/src/define.ts
@@ -1,3 +1,5 @@
1
+/// <reference types="../../../runtime/v1/global.d.ts" />
2
+
3
import type { z } from 'zod';
4
5
import type { InstrumentKind, InstrumentLanguage } from './types/instrument.base.js';
packages/runtime-core/tsconfig.build.json
@@ -3,7 +3,9 @@
"compilerOptions": {
"declaration": true,
"noEmit": false,
6
- "outDir": "lib"
+ "outDir": "lib",
7
+ "rootDir": "src",
8
+ "tsBuildInfoFile": "./lib/.tsbuildinfo"
9
},
10
"include": ["src/**/*"],
11
"exclude": ["src/**/__tests__/**"]
0 commit comments