Nev
Nev
It is going to be dependent on how you are consuming the package, what type of package you are creating and which packaging system you are using. The package.json identifies...
~~I think you'll find (unless you are using
Looking at the code, I'm not finding any references to these properties -- looks like they got removed before the project was released. I don't have the details on why,...
What is your build environment, this error indicates that you don't have all of the dependencies installed. The AISku (which looks like the component you are importing) correctly defines the...
Which version of the SDK are you using? Looking through the code this is populated from the automatic values assigned to the context.telemetryTrace.name (in the latest Sdk) which is populated...
[BUG] error TS2748: Cannot access ambient const enums when the '--isolatedModules' flag is provided.
Reading through multiple comments online there are 3 possible solutions to this for your application / library as this was a deliberate change for Application Insights to better support minification...
[BUG] error TS2748: Cannot access ambient const enums when the '--isolatedModules' flag is provided.
I'm also investigating to see if there is something I can do like declaring the exports as `export type {...}`, if that works I'll add to a future release. I...
[BUG] error TS2748: Cannot access ambient const enums when the '--isolatedModules' flag is provided.
Using `export type` does not work and defining the packages with `isolatedModules` set to `true` causes the const enums to be included as full normal enums. Removing the refactoring and...
[BUG] error TS2748: Cannot access ambient const enums when the '--isolatedModules' flag is provided.
No, at this point in time this is a won't fix as we will not be removing the usage of const enums. And because we consume and extend this ourselves...
[BUG] error TS2748: Cannot access ambient const enums when the '--isolatedModules' flag is provided.
@saranchonkau Can you post your tsconfig.json (or at the relevant settings (module, target, isolatedModules, skipLibCheck, etc) as I would not expect that just importing the ApplicationInsights module (should) cause the...