@fluidframework/local-driver 2.113.1 → 2.115.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/CHANGELOG.md +82 -0
- package/README.md +2 -0
- package/alpha.d.ts +11 -0
- package/api-extractor/api-extractor-lint-alpha.cjs.json +5 -0
- package/api-extractor/api-extractor-lint-alpha.esm.json +5 -0
- package/api-extractor/api-extractor.current.json +4 -1
- package/api-report/local-driver.alpha.api.md +31 -0
- package/dist/alpha.d.ts +19 -0
- package/dist/ephemeralService.d.ts +177 -0
- package/dist/ephemeralService.d.ts.map +1 -0
- package/dist/ephemeralService.js +295 -0
- package/dist/ephemeralService.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/eslint.config.mts +0 -11
- package/lib/alpha.d.ts +19 -0
- package/lib/ephemeralService.d.ts +177 -0
- package/lib/ephemeralService.d.ts.map +1 -0
- package/lib/ephemeralService.js +288 -0
- package/lib/ephemeralService.js.map +1 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +33 -18
- package/src/ephemeralService.ts +551 -0
- package/src/index.ts +10 -0
- package/src/packageVersion.ts +1 -1
- package/tsconfig.json +3 -0
package/tsconfig.json
CHANGED
|
@@ -5,5 +5,8 @@
|
|
|
5
5
|
"compilerOptions": {
|
|
6
6
|
"rootDir": "./src",
|
|
7
7
|
"outDir": "./lib",
|
|
8
|
+
// Disabled because this package imports container-runtime/container-loader, whose emitted
|
|
9
|
+
// declarations are incompatible with exactOptionalPropertyTypes.
|
|
10
|
+
"exactOptionalPropertyTypes": false,
|
|
8
11
|
},
|
|
9
12
|
}
|