@microsoft/applicationinsights-properties-js 2.7.2-nightly.2111-08 → 2.7.2-nightly.2111-09
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/Tests/Unit/src/SessionManager.Tests.ts +375 -0
- package/Tests/Unit/src/prop.tests.ts +11 -0
- package/Tests/Unit/src/properties.tests.ts +697 -0
- package/Tests/Unit/src/propertiesSize.tests.ts +59 -0
- package/Tests/UnitTests.html +53 -0
- package/Tests/tsconfig.json +13 -0
- package/api-extractor.json +361 -0
- package/applicationinsights-properties-js.build.error.log +18 -0
- package/applicationinsights-properties-js.build.log +365 -0
- package/browser/applicationinsights-properties-js.integrity.json +9 -9
- package/browser/applicationinsights-properties-js.js +2 -2
- package/browser/applicationinsights-properties-js.js.map +1 -1
- package/browser/applicationinsights-properties-js.min.js +2 -2
- package/browser/applicationinsights-properties-js.min.js.map +1 -1
- package/dist/applicationinsights-properties-js.api.json +1 -1
- package/dist/applicationinsights-properties-js.d.ts +1 -1
- package/dist/applicationinsights-properties-js.js +2 -2
- package/dist/applicationinsights-properties-js.js.map +1 -1
- package/dist/applicationinsights-properties-js.min.js +2 -2
- package/dist/applicationinsights-properties-js.min.js.map +1 -1
- package/dist/applicationinsights-properties-js.rollup.d.ts +1 -1
- package/dist-esm/Context/Application.js +1 -1
- package/dist-esm/Context/Device.js +1 -1
- package/dist-esm/Context/Internal.js +2 -2
- package/dist-esm/Context/Internal.js.map +1 -1
- package/dist-esm/Context/Location.js +1 -1
- package/dist-esm/Context/Session.js +1 -1
- package/dist-esm/Context/TelemetryTrace.js +1 -1
- package/dist-esm/Context/User.js +1 -1
- package/dist-esm/Interfaces/IPropTelemetryContext.js +1 -1
- package/dist-esm/Interfaces/ITelemetryConfig.js +1 -1
- package/dist-esm/PropertiesPlugin.js +1 -1
- package/dist-esm/TelemetryContext.js +1 -1
- package/dist-esm/applicationinsights-properties-js.js +1 -1
- package/package.json +3 -3
- package/rollup.config.js +139 -0
- package/src/Context/Internal.ts +1 -1
- package/temp/applicationinsights-properties-js.api.md +180 -0
- package/tslint.json +8 -0
- package/types/tsdoc-metadata.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Application Insights JavaScript SDK - Properties Plugin, 2.7.2-nightly.2111-
|
|
2
|
+
* Application Insights JavaScript SDK - Properties Plugin, 2.7.2-nightly.2111-09
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var Version = "2.7.2-nightly.2111-
|
|
7
|
+
var Version = "2.7.2-nightly.2111-09";
|
|
8
8
|
var Internal = /** @class */ (function () {
|
|
9
9
|
/**
|
|
10
10
|
* Constructs a new instance of the internal telemetry data class.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Internal.js.map","sources":["Internal.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nvar Version = \"2.7.2-nightly.2111-
|
|
1
|
+
{"version":3,"file":"Internal.js.map","sources":["Internal.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nvar Version = \"2.7.2-nightly.2111-09\";\r\nvar Internal = /** @class */ (function () {\r\n /**\r\n * Constructs a new instance of the internal telemetry data class.\r\n */\r\n function Internal(config) {\r\n this.sdkVersion = (config.sdkExtension && config.sdkExtension() ? config.sdkExtension() + \"_\" : \"\") + \"javascript:\" + Version;\r\n }\r\n return Internal;\r\n}());\r\nexport { Internal };\r\n//# sourceMappingURL=Internal.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
|
package/dist-esm/Context/User.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/applicationinsights-properties-js",
|
|
3
|
-
"version": "2.7.2-nightly.2111-
|
|
3
|
+
"version": "2.7.2-nightly.2111-09",
|
|
4
4
|
"description": "Microsoft Application Insights properties (Part A) plugin",
|
|
5
5
|
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
6
|
"author": "Microsoft Application Insights Team",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@microsoft/dynamicproto-js": "^1.1.4",
|
|
53
53
|
"@microsoft/applicationinsights-shims": "2.0.0",
|
|
54
|
-
"@microsoft/applicationinsights-core-js": "2.7.2-nightly.2111-
|
|
55
|
-
"@microsoft/applicationinsights-common": "2.7.2-nightly.2111-
|
|
54
|
+
"@microsoft/applicationinsights-core-js": "2.7.2-nightly.2111-09",
|
|
55
|
+
"@microsoft/applicationinsights-common": "2.7.2-nightly.2111-09"
|
|
56
56
|
},
|
|
57
57
|
"license": "MIT",
|
|
58
58
|
"publishConfig": {
|
package/rollup.config.js
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import nodeResolve from "@rollup/plugin-node-resolve";
|
|
2
|
+
import { uglify } from "@microsoft/applicationinsights-rollup-plugin-uglify3-js";
|
|
3
|
+
import replace from "@rollup/plugin-replace";
|
|
4
|
+
import cleanup from "rollup-plugin-cleanup";
|
|
5
|
+
import { es3Poly, es3Check, importCheck } from "@microsoft/applicationinsights-rollup-es3";
|
|
6
|
+
import dynamicRemove from "@microsoft/dynamicproto-js/tools/rollup/node/removedynamic";
|
|
7
|
+
import { updateDistEsmFiles } from "../../tools/updateDistEsm/updateDistEsm";
|
|
8
|
+
|
|
9
|
+
const version = require("./package.json").version;
|
|
10
|
+
const outputName = "applicationinsights-properties-js";
|
|
11
|
+
const banner = [
|
|
12
|
+
"/*!",
|
|
13
|
+
` * Application Insights JavaScript SDK - Properties Plugin, ${version}`,
|
|
14
|
+
" * Copyright (c) Microsoft and contributors. All rights reserved.",
|
|
15
|
+
" */"
|
|
16
|
+
].join("\n");
|
|
17
|
+
|
|
18
|
+
const replaceValues = {
|
|
19
|
+
"// Copyright (c) Microsoft Corporation. All rights reserved.": "",
|
|
20
|
+
"// Licensed under the MIT License.": ""
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
function doCleanup() {
|
|
24
|
+
return cleanup({
|
|
25
|
+
comments: [
|
|
26
|
+
'some',
|
|
27
|
+
/^.\s*@DynamicProtoStub/i,
|
|
28
|
+
/^\*\*\s*@class\s*$/
|
|
29
|
+
]
|
|
30
|
+
})
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const browserRollupConfigFactory = isProduction => {
|
|
34
|
+
const browserRollupConfig = {
|
|
35
|
+
input: `dist-esm/${outputName}.js`,
|
|
36
|
+
output: {
|
|
37
|
+
file: `browser/${outputName}.js`,
|
|
38
|
+
banner: banner,
|
|
39
|
+
format: "umd",
|
|
40
|
+
name: "Microsoft.ApplicationInsights",
|
|
41
|
+
extend: true,
|
|
42
|
+
freeze: false,
|
|
43
|
+
sourcemap: true
|
|
44
|
+
},
|
|
45
|
+
plugins: [
|
|
46
|
+
dynamicRemove(),
|
|
47
|
+
replace({
|
|
48
|
+
preventAssignment: true,
|
|
49
|
+
delimiters: ["", ""],
|
|
50
|
+
values: replaceValues
|
|
51
|
+
}),
|
|
52
|
+
importCheck({ exclude: [ "applicationinsights-properties-js" ] }),
|
|
53
|
+
nodeResolve({
|
|
54
|
+
browser: false,
|
|
55
|
+
preferBuiltins: false
|
|
56
|
+
}),
|
|
57
|
+
doCleanup(),
|
|
58
|
+
es3Poly(),
|
|
59
|
+
es3Check()
|
|
60
|
+
]
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
if (isProduction) {
|
|
64
|
+
browserRollupConfig.output.file = `browser/${outputName}.min.js`;
|
|
65
|
+
browserRollupConfig.plugins.push(
|
|
66
|
+
uglify({
|
|
67
|
+
ie8: true,
|
|
68
|
+
toplevel: true,
|
|
69
|
+
compress: {
|
|
70
|
+
passes:3,
|
|
71
|
+
unsafe: true
|
|
72
|
+
},
|
|
73
|
+
output: {
|
|
74
|
+
preamble: banner,
|
|
75
|
+
webkit:true
|
|
76
|
+
}
|
|
77
|
+
})
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
return browserRollupConfig;
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
const nodeUmdRollupConfigFactory = (isProduction) => {
|
|
85
|
+
const nodeRollupConfig = {
|
|
86
|
+
input: `dist-esm/${outputName}.js`,
|
|
87
|
+
output: {
|
|
88
|
+
file: `dist/${outputName}.js`,
|
|
89
|
+
banner: banner,
|
|
90
|
+
format: "umd",
|
|
91
|
+
name: "Microsoft.ApplicationInsights",
|
|
92
|
+
extend: true,
|
|
93
|
+
freeze: false,
|
|
94
|
+
sourcemap: true
|
|
95
|
+
},
|
|
96
|
+
plugins: [
|
|
97
|
+
dynamicRemove(),
|
|
98
|
+
replace({
|
|
99
|
+
preventAssignment: true,
|
|
100
|
+
delimiters: ["", ""],
|
|
101
|
+
values: replaceValues
|
|
102
|
+
}),
|
|
103
|
+
importCheck({ exclude: [ "applicationinsights-properties-js" ] }),
|
|
104
|
+
nodeResolve(),
|
|
105
|
+
doCleanup(),
|
|
106
|
+
es3Poly(),
|
|
107
|
+
es3Check()
|
|
108
|
+
]
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
if (isProduction) {
|
|
112
|
+
nodeRollupConfig.output.file = `dist/${outputName}.min.js`;
|
|
113
|
+
nodeRollupConfig.plugins.push(
|
|
114
|
+
uglify({
|
|
115
|
+
ie8: true,
|
|
116
|
+
toplevel: true,
|
|
117
|
+
compress: {
|
|
118
|
+
passes:3,
|
|
119
|
+
unsafe: true
|
|
120
|
+
},
|
|
121
|
+
output: {
|
|
122
|
+
preamble: banner,
|
|
123
|
+
webkit:true
|
|
124
|
+
}
|
|
125
|
+
})
|
|
126
|
+
);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
return nodeRollupConfig;
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
updateDistEsmFiles(replaceValues, banner);
|
|
133
|
+
|
|
134
|
+
export default [
|
|
135
|
+
browserRollupConfigFactory(true),
|
|
136
|
+
browserRollupConfigFactory(false),
|
|
137
|
+
nodeUmdRollupConfigFactory(true),
|
|
138
|
+
nodeUmdRollupConfigFactory(false)
|
|
139
|
+
];
|
package/src/Context/Internal.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { IInternal } from "@microsoft/applicationinsights-common";
|
|
5
5
|
import { ITelemetryConfig } from "../Interfaces/ITelemetryConfig";
|
|
6
6
|
|
|
7
|
-
const Version = "2.7.2-nightly.2111-
|
|
7
|
+
const Version = "2.7.2-nightly.2111-09";
|
|
8
8
|
|
|
9
9
|
export class Internal implements IInternal {
|
|
10
10
|
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
## API Report File for "@microsoft/applicationinsights-properties-js"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
import { BaseTelemetryPlugin } from '@microsoft/applicationinsights-core-js';
|
|
8
|
+
import { IAppInsightsCore } from '@microsoft/applicationinsights-core-js';
|
|
9
|
+
import { IApplication } from '@microsoft/applicationinsights-common';
|
|
10
|
+
import { IConfig } from '@microsoft/applicationinsights-common';
|
|
11
|
+
import { IConfiguration } from '@microsoft/applicationinsights-core-js';
|
|
12
|
+
import { IDevice } from '@microsoft/applicationinsights-common';
|
|
13
|
+
import { IDiagnosticLogger } from '@microsoft/applicationinsights-core-js';
|
|
14
|
+
import { IInternal } from '@microsoft/applicationinsights-common';
|
|
15
|
+
import { ILocation } from '@microsoft/applicationinsights-common';
|
|
16
|
+
import { IOperatingSystem } from '@microsoft/applicationinsights-common';
|
|
17
|
+
import { IPlugin } from '@microsoft/applicationinsights-core-js';
|
|
18
|
+
import { IProcessTelemetryContext } from '@microsoft/applicationinsights-core-js';
|
|
19
|
+
import { IPropertiesPlugin } from '@microsoft/applicationinsights-common';
|
|
20
|
+
import { ISession } from '@microsoft/applicationinsights-common';
|
|
21
|
+
import { ITelemetryContext } from '@microsoft/applicationinsights-common';
|
|
22
|
+
import { ITelemetryItem } from '@microsoft/applicationinsights-core-js';
|
|
23
|
+
import { ITelemetryPluginChain } from '@microsoft/applicationinsights-core-js';
|
|
24
|
+
import { ITelemetryTrace } from '@microsoft/applicationinsights-common';
|
|
25
|
+
import { ITraceState } from '@microsoft/applicationinsights-common';
|
|
26
|
+
import { IUserContext } from '@microsoft/applicationinsights-common';
|
|
27
|
+
import { IWeb } from '@microsoft/applicationinsights-common';
|
|
28
|
+
|
|
29
|
+
// @public (undocumented)
|
|
30
|
+
export interface IPropTelemetryContext extends ITelemetryContext {
|
|
31
|
+
// (undocumented)
|
|
32
|
+
applyApplicationContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
33
|
+
// (undocumented)
|
|
34
|
+
applyDeviceContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
35
|
+
// (undocumented)
|
|
36
|
+
applyInternalContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
37
|
+
// (undocumented)
|
|
38
|
+
applyLocationContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
39
|
+
// (undocumented)
|
|
40
|
+
applyOperatingSystemContxt(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
41
|
+
// (undocumented)
|
|
42
|
+
applyOperationContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
43
|
+
// (undocumented)
|
|
44
|
+
applySessionContext(evt: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
45
|
+
// (undocumented)
|
|
46
|
+
applyUserContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
47
|
+
// (undocumented)
|
|
48
|
+
applyWebContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
49
|
+
// (undocumented)
|
|
50
|
+
cleanUp(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
51
|
+
// (undocumented)
|
|
52
|
+
readonly sessionManager: SessionManager;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// @public (undocumented)
|
|
56
|
+
export interface ISessionConfig {
|
|
57
|
+
// @deprecated (undocumented)
|
|
58
|
+
cookieDomain?: () => string;
|
|
59
|
+
// (undocumented)
|
|
60
|
+
getNewId?: () => (idLength?: number) => string;
|
|
61
|
+
// (undocumented)
|
|
62
|
+
idLength?: () => number;
|
|
63
|
+
// (undocumented)
|
|
64
|
+
namePrefix?: () => string;
|
|
65
|
+
// (undocumented)
|
|
66
|
+
sessionCookiePostfix?: () => string;
|
|
67
|
+
// (undocumented)
|
|
68
|
+
sessionExpirationMs?: () => number;
|
|
69
|
+
// (undocumented)
|
|
70
|
+
sessionRenewalMs?: () => number;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// @public (undocumented)
|
|
74
|
+
export class PropertiesPlugin extends BaseTelemetryPlugin implements IPropertiesPlugin {
|
|
75
|
+
constructor();
|
|
76
|
+
// (undocumented)
|
|
77
|
+
context: IPropTelemetryContext;
|
|
78
|
+
// Warning: (ae-forgotten-export) The symbol "ITelemetryConfig" needs to be exported by the entry point applicationinsights-properties-js.d.ts
|
|
79
|
+
//
|
|
80
|
+
// (undocumented)
|
|
81
|
+
static getDefaultConfig(): ITelemetryConfig;
|
|
82
|
+
// (undocumented)
|
|
83
|
+
identifier: string;
|
|
84
|
+
// (undocumented)
|
|
85
|
+
initialize(config: IConfiguration & IConfig, core: IAppInsightsCore, extensions: IPlugin[], pluginChain?: ITelemetryPluginChain): void;
|
|
86
|
+
// (undocumented)
|
|
87
|
+
priority: number;
|
|
88
|
+
processTelemetry(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// @public (undocumented)
|
|
92
|
+
export class Session implements ISession {
|
|
93
|
+
acquisitionDate?: number;
|
|
94
|
+
id?: string;
|
|
95
|
+
renewalDate?: number;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// @public (undocumented)
|
|
99
|
+
export class SessionManager {
|
|
100
|
+
constructor(config: ISessionConfig, core?: IAppInsightsCore);
|
|
101
|
+
// (undocumented)
|
|
102
|
+
static acquisitionSpan: number;
|
|
103
|
+
// (undocumented)
|
|
104
|
+
automaticSession: Session;
|
|
105
|
+
backup(): void;
|
|
106
|
+
// (undocumented)
|
|
107
|
+
config: ISessionConfig;
|
|
108
|
+
// (undocumented)
|
|
109
|
+
static cookieUpdateInterval: number;
|
|
110
|
+
// (undocumented)
|
|
111
|
+
static renewalSpan: number;
|
|
112
|
+
// (undocumented)
|
|
113
|
+
update(): void;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// @public (undocumented)
|
|
117
|
+
export class TelemetryContext implements IPropTelemetryContext {
|
|
118
|
+
constructor(core: IAppInsightsCore, defaultConfig: ITelemetryConfig);
|
|
119
|
+
// (undocumented)
|
|
120
|
+
appId: () => string;
|
|
121
|
+
// (undocumented)
|
|
122
|
+
application: IApplication;
|
|
123
|
+
// (undocumented)
|
|
124
|
+
applyApplicationContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
125
|
+
// (undocumented)
|
|
126
|
+
applyDeviceContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
127
|
+
// (undocumented)
|
|
128
|
+
applyInternalContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
129
|
+
// (undocumented)
|
|
130
|
+
applyLocationContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
131
|
+
// (undocumented)
|
|
132
|
+
applyOperatingSystemContxt(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
133
|
+
// (undocumented)
|
|
134
|
+
applyOperationContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
135
|
+
// (undocumented)
|
|
136
|
+
applySessionContext(evt: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
137
|
+
// (undocumented)
|
|
138
|
+
applyUserContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
139
|
+
// (undocumented)
|
|
140
|
+
applyWebContext(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
141
|
+
// (undocumented)
|
|
142
|
+
cleanUp(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
143
|
+
// (undocumented)
|
|
144
|
+
device: IDevice;
|
|
145
|
+
// (undocumented)
|
|
146
|
+
getSessionId: () => string;
|
|
147
|
+
// (undocumented)
|
|
148
|
+
internal: IInternal;
|
|
149
|
+
// (undocumented)
|
|
150
|
+
location: ILocation;
|
|
151
|
+
// (undocumented)
|
|
152
|
+
os: IOperatingSystem;
|
|
153
|
+
// (undocumented)
|
|
154
|
+
session: ISession;
|
|
155
|
+
// (undocumented)
|
|
156
|
+
sessionManager: SessionManager;
|
|
157
|
+
// (undocumented)
|
|
158
|
+
telemetryTrace: ITelemetryTrace;
|
|
159
|
+
// (undocumented)
|
|
160
|
+
user: IUserContext;
|
|
161
|
+
// (undocumented)
|
|
162
|
+
web: IWeb;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// @public (undocumented)
|
|
166
|
+
export class TelemetryTrace implements ITelemetryTrace {
|
|
167
|
+
constructor(id?: string, parentId?: string, name?: string, logger?: IDiagnosticLogger);
|
|
168
|
+
// (undocumented)
|
|
169
|
+
name: string;
|
|
170
|
+
// (undocumented)
|
|
171
|
+
parentID: string;
|
|
172
|
+
// (undocumented)
|
|
173
|
+
traceID: string;
|
|
174
|
+
// (undocumented)
|
|
175
|
+
traceState: ITraceState;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// (No @packageDocumentation comment for this package)
|
|
179
|
+
|
|
180
|
+
```
|
package/tslint.json
ADDED