@microsoft/applicationinsights-offlinechannel-js 0.1.0-nightly3.2402-06

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.
Files changed (47) hide show
  1. package/CODE_OF_CONDUCT.md +9 -0
  2. package/CONTRIBUTING.md +14 -0
  3. package/LICENSE.TXT +21 -0
  4. package/PRIVACY +3 -0
  5. package/README.md +63 -0
  6. package/SECURITY.md +41 -0
  7. package/SUPPORT.md +14 -0
  8. package/dist/es5/applicationinsights-offlinechannel-js.js +6391 -0
  9. package/dist/es5/applicationinsights-offlinechannel-js.js.map +1 -0
  10. package/dist/es5/applicationinsights-offlinechannel-js.min.js +6 -0
  11. package/dist/es5/applicationinsights-offlinechannel-js.min.js.map +1 -0
  12. package/dist-es5/Helpers/Utils.js +185 -0
  13. package/dist-es5/Helpers/Utils.js.map +1 -0
  14. package/dist-es5/InMemoryBatch.js +64 -0
  15. package/dist-es5/InMemoryBatch.js.map +1 -0
  16. package/dist-es5/Interfaces/IInMemoryBatch.js +8 -0
  17. package/dist-es5/Interfaces/IInMemoryBatch.js.map +1 -0
  18. package/dist-es5/Interfaces/IOfflineBatch.js +9 -0
  19. package/dist-es5/Interfaces/IOfflineBatch.js.map +1 -0
  20. package/dist-es5/Interfaces/IOfflineIndexDb.js +8 -0
  21. package/dist-es5/Interfaces/IOfflineIndexDb.js.map +1 -0
  22. package/dist-es5/Interfaces/IOfflineProvider.js +8 -0
  23. package/dist-es5/Interfaces/IOfflineProvider.js.map +1 -0
  24. package/dist-es5/Interfaces/ISender.js +8 -0
  25. package/dist-es5/Interfaces/ISender.js.map +1 -0
  26. package/dist-es5/OfflineBatchHandler.js +343 -0
  27. package/dist-es5/OfflineBatchHandler.js.map +1 -0
  28. package/dist-es5/OfflineChannel.js +465 -0
  29. package/dist-es5/OfflineChannel.js.map +1 -0
  30. package/dist-es5/PayloadHelper.js +62 -0
  31. package/dist-es5/PayloadHelper.js.map +1 -0
  32. package/dist-es5/Providers/IndexDbHelper.js +626 -0
  33. package/dist-es5/Providers/IndexDbHelper.js.map +1 -0
  34. package/dist-es5/Providers/IndexDbProvider.js +468 -0
  35. package/dist-es5/Providers/IndexDbProvider.js.map +1 -0
  36. package/dist-es5/Providers/WebStorageProvider.js +463 -0
  37. package/dist-es5/Providers/WebStorageProvider.js.map +1 -0
  38. package/dist-es5/Sender.js +572 -0
  39. package/dist-es5/Sender.js.map +1 -0
  40. package/dist-es5/__DynamicConstants.js +80 -0
  41. package/dist-es5/__DynamicConstants.js.map +1 -0
  42. package/dist-es5/applicationinsights-offlinechannel-js.js +11 -0
  43. package/dist-es5/applicationinsights-offlinechannel-js.js.map +1 -0
  44. package/package.json +65 -0
  45. package/tsconfig.json +28 -0
  46. package/types/applicationinsights-offlinechannel-js.d.ts +605 -0
  47. package/types/applicationinsights-offlinechannel-js.namespaced.d.ts +601 -0
@@ -0,0 +1,80 @@
1
+ /*
2
+ * Application Insights JavaScript SDK - Offline Channel, 0.1.0-nightly3.2402-06
3
+ * Copyright (c) Microsoft and contributors. All rights reserved.
4
+ */
5
+
6
+
7
+ // @skip-file-minify
8
+ // ##############################################################
9
+ // AUTO GENERATED FILE: This file is Auto Generated during build.
10
+ // ##############################################################
11
+ // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
+ // Note: DON'T Export these const from the package as we are still targeting ES3 this will export a mutable variables that someone could change!!!
13
+ // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14
+ export var _DYN_ENDPOINT = "endpoint"; // Count: 4
15
+ export var _DYN_ADD_EVENT = "addEvent"; // Count: 8
16
+ export var _DYN_PUSH = "push"; // Count: 18
17
+ export var _DYN_LENGTH = "length"; // Count: 49
18
+ export var _DYN_GET_ITEMS = "getItems"; // Count: 3
19
+ export var _DYN_SPLIT = "split"; // Count: 5
20
+ export var _DYN_SPLICE = "splice"; // Count: 4
21
+ export var _DYN_INITIALIZE = "initialize"; // Count: 10
22
+ export var _DYN_DIAG_LOG = "diagLog"; // Count: 6
23
+ export var _DYN_ITEM_CTX = "itemCtx"; // Count: 4
24
+ export var _DYN_STORAGE_CONFIG = "storageConfig"; // Count: 4
25
+ export var _DYN_VALUE = "value"; // Count: 13
26
+ export var _DYN_REASON = "reason"; // Count: 5
27
+ export var _DYN_REJECTED = "rejected"; // Count: 7
28
+ export var _DYN_GET_NEXT_BATCH = "getNextBatch"; // Count: 5
29
+ export var _DYN_REMOVE_EVENTS = "removeEvents"; // Count: 3
30
+ export var _DYN_DATA = "data"; // Count: 13
31
+ export var _DYN_SEND_POST = "sendPOST"; // Count: 4
32
+ export var _DYN_ATTEMP_CNT = "attempCnt"; // Count: 4
33
+ export var _DYN_STATE = "state"; // Count: 8
34
+ export var _DYN_TEARDOWN = "teardown"; // Count: 5
35
+ export var _DYN_IS_ARR = "isArr"; // Count: 5
36
+ export var _DYN_INDEX_OF = "indexOf"; // Count: 9
37
+ export var _DYN_IS_ONLINE = "isOnline"; // Count: 3
38
+ export var _DYN_CANCEL = "cancel"; // Count: 4
39
+ export var _DYN_REFRESH = "refresh"; // Count: 4
40
+ export var _DYN_PROCESS_NEXT = "processNext"; // Count: 3
41
+ export var _DYN_PERSISTENCE = "persistence"; // Count: 5
42
+ export var _DYN_MIN_PERSISTENCE_CACH0 = "minPersistenceCacheLevel"; // Count: 2
43
+ export var _DYN_IS_COMPLETELY_IDLE = "isCompletelyIdle"; // Count: 4
44
+ export var _DYN_CRITICAL_CNT = "criticalCnt"; // Count: 7
45
+ export var _DYN_GET_OFFLINE_SUPPORT = "getOfflineSupport"; // Count: 2
46
+ export var _DYN_OVERRIDE_INSTRUMENTA1 = "overrideInstrumentationKey"; // Count: 2
47
+ export var _DYN_INSTRUMENTATION_KEY = "instrumentationKey"; // Count: 3
48
+ export var _DYN_TO_STRING = "toString"; // Count: 5
49
+ export var _DYN_URL_STRING = "urlString"; // Count: 4
50
+ export var _DYN_SET_REQUEST_HEADER = "setRequestHeader"; // Count: 2
51
+ export var _DYN_STATUS = "status"; // Count: 4
52
+ export var _DYN_ONERROR = "onerror"; // Count: 11
53
+ export var _DYN_REPLACE = "replace"; // Count: 4
54
+ export var _DYN_CHAR_CODE_AT = "charCodeAt"; // Count: 3
55
+ export var _DYN_CHAR_AT = "charAt"; // Count: 8
56
+ export var _DYN_FROM_CHAR_CODE = "fromCharCode"; // Count: 3
57
+ export var _DYN_GET_TIME = "getTime"; // Count: 4
58
+ export var _DYN_NAME = "name"; // Count: 7
59
+ export var _DYN_DB_HDL = "dbHdl"; // Count: 7
60
+ export var _DYN_IS_AVAILABLE = "isAvailable"; // Count: 8
61
+ export var _DYN_TRANSACTION = "transaction"; // Count: 5
62
+ export var _DYN_OPEN_STORE = "openStore"; // Count: 3
63
+ export var _DYN_OPEN_CURSOR = "openCursor"; // Count: 3
64
+ export var _DYN_DB_NAME = "dbName"; // Count: 5
65
+ export var _DYN_REMOVE = "remove"; // Count: 4
66
+ export var _DYN_ONSUCCESS = "onsuccess"; // Count: 7
67
+ export var _DYN_THEN = "then"; // Count: 12
68
+ export var _DYN_KEY_RANGE = "keyRange"; // Count: 3
69
+ export var _DYN_CONTINUE = "continue"; // Count: 7
70
+ export var _DYN_SUBSTRING = "substring"; // Count: 3
71
+ export var _DYN_STORAGE_KEY_PREFIX = "storageKeyPrefix"; // Count: 2
72
+ export var _DYN_IN_STORAGE_MAX_TIME = "inStorageMaxTime"; // Count: 2
73
+ export var _DYN_MAX_STORAGE_SIZE_IN_2 = "maxStorageSizeInBytes"; // Count: 2
74
+ export var _DYN__EVENTS_TO_DROP_PER_3 = "EventsToDropPerTime"; // Count: 2
75
+ export var _DYN_MAX_CRITICAL_EVTS_DR4 = "maxCriticalEvtsDropCnt"; // Count: 2
76
+ export var _DYN_SUPPORTS_SYNC_REQUES5 = "supportsSyncRequests"; // Count: 2
77
+ export var _DYN_REMOVE_ITEM = "removeItem"; // Count: 3
78
+ export var _DYN_EVTS = "evts"; // Count: 6
79
+ export var _DYN_LAST_ACCESS_TIME = "lastAccessTime"; // Count: 3
80
+ //# sourceMappingURL=__DynamicConstants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"__DynamicConstants.js.map","sources":["__DynamicConstants.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// @skip-file-minify\r\n// ##############################################################\r\n// AUTO GENERATED FILE: This file is Auto Generated during build.\r\n// ##############################################################\r\n// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\r\n// Note: DON'T Export these const from the package as we are still targeting ES3 this will export a mutable variables that someone could change!!!\r\n// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\r\nexport var _DYN_ENDPOINT = \"endpoint\"; // Count: 4\r\nexport var _DYN_ADD_EVENT = \"addEvent\"; // Count: 8\r\nexport var _DYN_PUSH = \"push\"; // Count: 18\r\nexport var _DYN_LENGTH = \"length\"; // Count: 49\r\nexport var _DYN_GET_ITEMS = \"getItems\"; // Count: 3\r\nexport var _DYN_SPLIT = \"split\"; // Count: 5\r\nexport var _DYN_SPLICE = \"splice\"; // Count: 4\r\nexport var _DYN_INITIALIZE = \"initialize\"; // Count: 10\r\nexport var _DYN_DIAG_LOG = \"diagLog\"; // Count: 6\r\nexport var _DYN_ITEM_CTX = \"itemCtx\"; // Count: 4\r\nexport var _DYN_STORAGE_CONFIG = \"storageConfig\"; // Count: 4\r\nexport var _DYN_VALUE = \"value\"; // Count: 13\r\nexport var _DYN_REASON = \"reason\"; // Count: 5\r\nexport var _DYN_REJECTED = \"rejected\"; // Count: 7\r\nexport var _DYN_GET_NEXT_BATCH = \"getNextBatch\"; // Count: 5\r\nexport var _DYN_REMOVE_EVENTS = \"removeEvents\"; // Count: 3\r\nexport var _DYN_DATA = \"data\"; // Count: 13\r\nexport var _DYN_SEND_POST = \"sendPOST\"; // Count: 4\r\nexport var _DYN_ATTEMP_CNT = \"attempCnt\"; // Count: 4\r\nexport var _DYN_STATE = \"state\"; // Count: 8\r\nexport var _DYN_TEARDOWN = \"teardown\"; // Count: 5\r\nexport var _DYN_IS_ARR = \"isArr\"; // Count: 5\r\nexport var _DYN_INDEX_OF = \"indexOf\"; // Count: 9\r\nexport var _DYN_IS_ONLINE = \"isOnline\"; // Count: 3\r\nexport var _DYN_CANCEL = \"cancel\"; // Count: 4\r\nexport var _DYN_REFRESH = \"refresh\"; // Count: 4\r\nexport var _DYN_PROCESS_NEXT = \"processNext\"; // Count: 3\r\nexport var _DYN_PERSISTENCE = \"persistence\"; // Count: 5\r\nexport var _DYN_MIN_PERSISTENCE_CACH0 = \"minPersistenceCacheLevel\"; // Count: 2\r\nexport var _DYN_IS_COMPLETELY_IDLE = \"isCompletelyIdle\"; // Count: 4\r\nexport var _DYN_CRITICAL_CNT = \"criticalCnt\"; // Count: 7\r\nexport var _DYN_GET_OFFLINE_SUPPORT = \"getOfflineSupport\"; // Count: 2\r\nexport var _DYN_OVERRIDE_INSTRUMENTA1 = \"overrideInstrumentationKey\"; // Count: 2\r\nexport var _DYN_INSTRUMENTATION_KEY = \"instrumentationKey\"; // Count: 3\r\nexport var _DYN_TO_STRING = \"toString\"; // Count: 5\r\nexport var _DYN_URL_STRING = \"urlString\"; // Count: 4\r\nexport var _DYN_SET_REQUEST_HEADER = \"setRequestHeader\"; // Count: 2\r\nexport var _DYN_STATUS = \"status\"; // Count: 4\r\nexport var _DYN_ONERROR = \"onerror\"; // Count: 11\r\nexport var _DYN_REPLACE = \"replace\"; // Count: 4\r\nexport var _DYN_CHAR_CODE_AT = \"charCodeAt\"; // Count: 3\r\nexport var _DYN_CHAR_AT = \"charAt\"; // Count: 8\r\nexport var _DYN_FROM_CHAR_CODE = \"fromCharCode\"; // Count: 3\r\nexport var _DYN_GET_TIME = \"getTime\"; // Count: 4\r\nexport var _DYN_NAME = \"name\"; // Count: 7\r\nexport var _DYN_DB_HDL = \"dbHdl\"; // Count: 7\r\nexport var _DYN_IS_AVAILABLE = \"isAvailable\"; // Count: 8\r\nexport var _DYN_TRANSACTION = \"transaction\"; // Count: 5\r\nexport var _DYN_OPEN_STORE = \"openStore\"; // Count: 3\r\nexport var _DYN_OPEN_CURSOR = \"openCursor\"; // Count: 3\r\nexport var _DYN_DB_NAME = \"dbName\"; // Count: 5\r\nexport var _DYN_REMOVE = \"remove\"; // Count: 4\r\nexport var _DYN_ONSUCCESS = \"onsuccess\"; // Count: 7\r\nexport var _DYN_THEN = \"then\"; // Count: 12\r\nexport var _DYN_KEY_RANGE = \"keyRange\"; // Count: 3\r\nexport var _DYN_CONTINUE = \"continue\"; // Count: 7\r\nexport var _DYN_SUBSTRING = \"substring\"; // Count: 3\r\nexport var _DYN_STORAGE_KEY_PREFIX = \"storageKeyPrefix\"; // Count: 2\r\nexport var _DYN_IN_STORAGE_MAX_TIME = \"inStorageMaxTime\"; // Count: 2\r\nexport var _DYN_MAX_STORAGE_SIZE_IN_2 = \"maxStorageSizeInBytes\"; // Count: 2\r\nexport var _DYN__EVENTS_TO_DROP_PER_3 = \"EventsToDropPerTime\"; // Count: 2\r\nexport var _DYN_MAX_CRITICAL_EVTS_DR4 = \"maxCriticalEvtsDropCnt\"; // Count: 2\r\nexport var _DYN_SUPPORTS_SYNC_REQUES5 = \"supportsSyncRequests\"; // Count: 2\r\nexport var _DYN_REMOVE_ITEM = \"removeItem\"; // Count: 3\r\nexport var _DYN_EVTS = \"evts\"; // Count: 6\r\nexport var _DYN_LAST_ACCESS_TIME = \"lastAccessTime\"; // Count: 3\r\n//# sourceMappingURL=__DynamicConstants.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
@@ -0,0 +1,11 @@
1
+ /*
2
+ * Application Insights JavaScript SDK - Offline Channel, 0.1.0-nightly3.2402-06
3
+ * Copyright (c) Microsoft and contributors. All rights reserved.
4
+ */
5
+ export { WebStorageProvider } from "./Providers/WebStorageProvider";
6
+ export { IndexedDbProvider } from "./Providers/IndexDbProvider";
7
+ export { OfflineBatchHandler } from "./OfflineBatchHandler";
8
+ export { InMemoryBatch } from "./InMemoryBatch";
9
+ export { Sender } from "./Sender";
10
+ export { OfflineChannel } from "./OfflineChannel";
11
+ //# sourceMappingURL=applicationinsights-offlinechannel-js.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"applicationinsights-offlinechannel-js.js.map","sources":["applicationinsights-offlinechannel-js.js"],"sourcesContent":["export { WebStorageProvider } from \"./Providers/WebStorageProvider\";\r\nexport { IndexedDbProvider } from \"./Providers/IndexDbProvider\";\r\nexport { OfflineBatchHandler } from \"./OfflineBatchHandler\";\r\nexport { InMemoryBatch } from \"./InMemoryBatch\";\r\nexport { Sender } from \"./Sender\";\r\nexport { OfflineChannel } from \"./OfflineChannel\";\r\n//# sourceMappingURL=applicationinsights-offlinechannel-js.js.map"],"names":[],"mappings":";;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA"}
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@microsoft/applicationinsights-offlinechannel-js",
3
+ "version": "0.1.0-nightly3.2402-06",
4
+ "description": "Microsoft Application Insights JavaScript SDK Offline Channel",
5
+ "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
6
+ "author": "Microsoft Application Insights Team",
7
+ "main": "dist/es5/applicationinsights-offlinechannel-js.js",
8
+ "module": "dist-es5/applicationinsights-offlinechannel-js.js",
9
+ "types": "types/applicationinsights-offlinechannel-js.d.ts",
10
+ "sideEffects": false,
11
+ "repository": "github:Microsoft/applicationinsights-js",
12
+ "scripts": {
13
+ "clean": "git clean -xdf",
14
+ "build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
15
+ "build:esm": "grunt offlinechannel",
16
+ "build:browser": "rollup -c rollup.config.js --bundleConfigAsCjs",
17
+ "rebuild": "npm run build",
18
+ "test": "grunt offlinechanneltest",
19
+ "mintest": "grunt offlinechannel-mintest",
20
+ "lint": "tslint -p tsconfig.json",
21
+ "dtsgen": "api-extractor run --local && node ../../scripts/dtsgen.js \"Microsoft Application Insights JavaScript SDK Offline Channel\"",
22
+ "sri": "node ../../tools/subResourceIntegrity/generateIntegrityFile.js",
23
+ "ai-min": "grunt offlinechannel-min",
24
+ "ai-restore": "grunt offlinechannel-restore",
25
+ "npm-pack": "npm pack",
26
+ "api-docs": "typedoc"
27
+ },
28
+ "dependencies": {
29
+ "@microsoft/dynamicproto-js": "^2.0.3",
30
+ "@microsoft/applicationinsights-shims": "3.0.1",
31
+ "@microsoft/applicationinsights-core-js": "3.1.0-nightly3.2402-06",
32
+ "@microsoft/applicationinsights-common": "3.1.0-nightly3.2402-06",
33
+ "@nevware21/ts-utils": ">= 0.10.4 < 2.x",
34
+ "@nevware21/ts-async": ">= 0.3.0 < 2.x"
35
+ },
36
+ "peerDependencies": {
37
+ "tslib": "*"
38
+ },
39
+ "devDependencies": {
40
+ "@microsoft/ai-test-framework": "0.0.1",
41
+ "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
42
+ "@microsoft/applicationinsights-rollup-es5": "1.0.2",
43
+ "@microsoft/api-extractor": "^7.18.19",
44
+ "@types/sinon": "4.3.3",
45
+ "grunt": "^1.5.3",
46
+ "grunt-cli": "^1.4.3",
47
+ "@nevware21/grunt-ts-plugin": "^0.4.3",
48
+ "@nevware21/grunt-eslint-ts": "^0.2.2",
49
+ "globby": "^11.0.0",
50
+ "magic-string": "^0.25.7",
51
+ "@rollup/plugin-commonjs": "^24.0.0",
52
+ "@rollup/plugin-node-resolve": "^15.0.1",
53
+ "@rollup/plugin-replace": "^5.0.2",
54
+ "rollup-plugin-cleanup": "^3.2.1",
55
+ "rollup": "^3.20.0",
56
+ "typescript": "^4.9.3",
57
+ "tslib": "^2.0.0",
58
+ "sinon": "^7.3.1",
59
+ "typedoc": "^0.24.8"
60
+ },
61
+ "license": "MIT",
62
+ "publishConfig": {
63
+ "tag": "nightly3"
64
+ }
65
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "compilerOptions": {
3
+ "sourceMap": true,
4
+ "inlineSources": true,
5
+ "module": "es6",
6
+ "moduleResolution": "Node",
7
+ "target": "es5",
8
+ "alwaysStrict": true,
9
+ "strictNullChecks": false,
10
+ "suppressImplicitAnyIndexErrors": true,
11
+ "allowSyntheticDefaultImports": true,
12
+ "importHelpers": true,
13
+ "noEmitHelpers": true,
14
+ "forceConsistentCasingInFileNames": true,
15
+ "skipLibCheck": true,
16
+ "declaration": true,
17
+ "declarationDir": "build/types",
18
+ "removeComments": false,
19
+ "outDir": "dist-es5/",
20
+ "rootDir": "./src"
21
+ },
22
+ "include": [
23
+ "./src/**/*.ts"],
24
+ "exclude": [
25
+ "node_modules/**"
26
+ ]
27
+ }
28
+