├── .aiAutoMinify.json ├── .eslintrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── codeql │ └── codeql-config.yml └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── lock.yml │ ├── npm-grunt.yml │ └── stale.yml ├── .gitignore ├── .npmignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── PRIVACY ├── README.md ├── RELEASES.md ├── SECURITY.md ├── SUPPORT.md ├── ThirdPartyNotices.txt ├── applicationinsights-react-js ├── .gitignore ├── .npmignore ├── LICENSE ├── NOTICE ├── PRIVACY ├── README.md ├── api-extractor.json ├── package.json ├── rollup.config.js ├── src │ ├── AppInsightsContext.tsx │ ├── AppInsightsErrorBoundary.tsx │ ├── Interfaces │ │ └── IReactExtensionConfig.ts │ ├── ReactPlugin.ts │ ├── applicationinsights-react-js.ts │ ├── useTrackEvent.ts │ ├── useTrackMetric.ts │ └── withAITracking.tsx ├── test │ ├── AppInsightsErrorBoundary.test.tsx │ ├── ReactAI.test.ts │ ├── TestComponent.tsx │ ├── jestconfig.json │ ├── tsconfig.json │ └── withAITracking.test.tsx ├── tsconfig.json └── tslint.json ├── common ├── Tests │ ├── External │ │ ├── blanket-1.2.2.js │ │ ├── blanket-reporter.js │ │ ├── es6-promise.auto.min.js │ │ ├── magic-string.umd.js │ │ ├── qunit-1.23.1.css │ │ ├── qunit-1.23.1.js │ │ ├── qunit-2.9.1.css │ │ ├── qunit-2.9.1.js │ │ ├── qunit.d.ts │ │ ├── require-2.2.0.js │ │ ├── require-2.3.6.js │ │ ├── sinon-1.17.2.js │ │ ├── sinon-7.3.1.js │ │ ├── sinon.d.ts │ │ └── whatwg-fetch.3.0.0.js │ ├── Framework │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── AITestClass.ts │ │ │ ├── Assert.ts │ │ │ ├── DebugHelpers.ts │ │ │ ├── PollingAssert.ts │ │ │ ├── TelemetryValidation │ │ │ │ ├── CommonValidator.ts │ │ │ │ ├── EventValidator.ts │ │ │ │ ├── ExceptionValidator.ts │ │ │ │ ├── ITypeValidator.ts │ │ │ │ ├── MetricValidator.ts │ │ │ │ ├── PageViewPerformanceValidator.ts │ │ │ │ ├── PageViewValidator.ts │ │ │ │ ├── RemoteDepdencyValidator.ts │ │ │ │ └── TraceValidator.ts │ │ │ ├── TestCase.ts │ │ │ └── ai-test-framework.ts │ │ └── tsconfig.json │ └── Selenium │ │ ├── ExceptionHelper.js │ │ ├── ModuleLoader.js │ │ └── SimpleSyncPromise.js ├── config │ └── rush │ │ ├── .npmrc │ │ ├── command-line.json │ │ ├── common-versions.json │ │ ├── npm-shrinkwrap.json │ │ └── version-policies.json ├── publish │ ├── AzureStorageHelper │ │ └── AzureStorageHelper.psm1 │ └── Logging │ │ └── Logging.psm1 └── scripts │ ├── install-run-rush-silent.js │ ├── install-run-rush.js │ ├── install-run-rushx.js │ ├── install-run-silent.js │ └── install-run.js ├── gruntfile.js ├── package.json ├── policheck-exclusions.xml ├── rush.json ├── sample └── applicationinsights-react-sample │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.css │ ├── App.test.js │ ├── App.tsx │ ├── ApplicationInsightsService.tsx │ ├── TestComponent.tsx │ ├── TestPage.tsx │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ └── reportWebVitals.ts │ └── tsconfig.json ├── scripts ├── dtsgen.js └── dtsgen.ps1 ├── tools ├── grunt-tasks │ └── minifyNames.js ├── release-tools │ ├── README.md │ ├── npm-package.js │ ├── package.json │ ├── package_groups.json │ ├── setAiVersion.js │ ├── setVersion.js │ ├── updatemanifest.js │ └── zipbrowser.js ├── rollup-plugin-uglify3-js │ ├── .eslintrc │ ├── dist │ │ └── esm │ │ │ └── rollup-plugin-uglify3-js.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ └── uglify3-js.ts │ └── tsconfig.json ├── status-tools │ ├── github-status.js │ └── package.json ├── subResourceIntegrity │ └── generateIntegrityFile.js └── updateDistEsm │ └── updateDistEsm.js ├── tsconfig.json ├── version.json └── yarn.lock /.aiAutoMinify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.aiAutoMinify.json -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/npm-grunt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.github/workflows/npm-grunt.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/.npmignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/NOTICE -------------------------------------------------------------------------------- /PRIVACY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/PRIVACY -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/RELEASES.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /applicationinsights-react-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/.gitignore -------------------------------------------------------------------------------- /applicationinsights-react-js/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/.npmignore -------------------------------------------------------------------------------- /applicationinsights-react-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/LICENSE -------------------------------------------------------------------------------- /applicationinsights-react-js/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/NOTICE -------------------------------------------------------------------------------- /applicationinsights-react-js/PRIVACY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/PRIVACY -------------------------------------------------------------------------------- /applicationinsights-react-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/README.md -------------------------------------------------------------------------------- /applicationinsights-react-js/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/api-extractor.json -------------------------------------------------------------------------------- /applicationinsights-react-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/package.json -------------------------------------------------------------------------------- /applicationinsights-react-js/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/rollup.config.js -------------------------------------------------------------------------------- /applicationinsights-react-js/src/AppInsightsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/src/AppInsightsContext.tsx -------------------------------------------------------------------------------- /applicationinsights-react-js/src/AppInsightsErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/src/AppInsightsErrorBoundary.tsx -------------------------------------------------------------------------------- /applicationinsights-react-js/src/Interfaces/IReactExtensionConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/src/Interfaces/IReactExtensionConfig.ts -------------------------------------------------------------------------------- /applicationinsights-react-js/src/ReactPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/src/ReactPlugin.ts -------------------------------------------------------------------------------- /applicationinsights-react-js/src/applicationinsights-react-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/src/applicationinsights-react-js.ts -------------------------------------------------------------------------------- /applicationinsights-react-js/src/useTrackEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/src/useTrackEvent.ts -------------------------------------------------------------------------------- /applicationinsights-react-js/src/useTrackMetric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/src/useTrackMetric.ts -------------------------------------------------------------------------------- /applicationinsights-react-js/src/withAITracking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/src/withAITracking.tsx -------------------------------------------------------------------------------- /applicationinsights-react-js/test/AppInsightsErrorBoundary.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/test/AppInsightsErrorBoundary.test.tsx -------------------------------------------------------------------------------- /applicationinsights-react-js/test/ReactAI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/test/ReactAI.test.ts -------------------------------------------------------------------------------- /applicationinsights-react-js/test/TestComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/test/TestComponent.tsx -------------------------------------------------------------------------------- /applicationinsights-react-js/test/jestconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/test/jestconfig.json -------------------------------------------------------------------------------- /applicationinsights-react-js/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/test/tsconfig.json -------------------------------------------------------------------------------- /applicationinsights-react-js/test/withAITracking.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/test/withAITracking.test.tsx -------------------------------------------------------------------------------- /applicationinsights-react-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/tsconfig.json -------------------------------------------------------------------------------- /applicationinsights-react-js/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/applicationinsights-react-js/tslint.json -------------------------------------------------------------------------------- /common/Tests/External/blanket-1.2.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/blanket-1.2.2.js -------------------------------------------------------------------------------- /common/Tests/External/blanket-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/blanket-reporter.js -------------------------------------------------------------------------------- /common/Tests/External/es6-promise.auto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/es6-promise.auto.min.js -------------------------------------------------------------------------------- /common/Tests/External/magic-string.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/magic-string.umd.js -------------------------------------------------------------------------------- /common/Tests/External/qunit-1.23.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/qunit-1.23.1.css -------------------------------------------------------------------------------- /common/Tests/External/qunit-1.23.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/qunit-1.23.1.js -------------------------------------------------------------------------------- /common/Tests/External/qunit-2.9.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/qunit-2.9.1.css -------------------------------------------------------------------------------- /common/Tests/External/qunit-2.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/qunit-2.9.1.js -------------------------------------------------------------------------------- /common/Tests/External/qunit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/qunit.d.ts -------------------------------------------------------------------------------- /common/Tests/External/require-2.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/require-2.2.0.js -------------------------------------------------------------------------------- /common/Tests/External/require-2.3.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/require-2.3.6.js -------------------------------------------------------------------------------- /common/Tests/External/sinon-1.17.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/sinon-1.17.2.js -------------------------------------------------------------------------------- /common/Tests/External/sinon-7.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/sinon-7.3.1.js -------------------------------------------------------------------------------- /common/Tests/External/sinon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/sinon.d.ts -------------------------------------------------------------------------------- /common/Tests/External/whatwg-fetch.3.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/External/whatwg-fetch.3.0.0.js -------------------------------------------------------------------------------- /common/Tests/Framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/package.json -------------------------------------------------------------------------------- /common/Tests/Framework/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/rollup.config.js -------------------------------------------------------------------------------- /common/Tests/Framework/src/AITestClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/AITestClass.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/Assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/Assert.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/DebugHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/DebugHelpers.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/PollingAssert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/PollingAssert.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/CommonValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TelemetryValidation/CommonValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/EventValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TelemetryValidation/EventValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/ExceptionValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TelemetryValidation/ExceptionValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/ITypeValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TelemetryValidation/ITypeValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/MetricValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TelemetryValidation/MetricValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/PageViewPerformanceValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TelemetryValidation/PageViewPerformanceValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/PageViewValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TelemetryValidation/PageViewValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/RemoteDepdencyValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TelemetryValidation/RemoteDepdencyValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TelemetryValidation/TraceValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TelemetryValidation/TraceValidator.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/TestCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/TestCase.ts -------------------------------------------------------------------------------- /common/Tests/Framework/src/ai-test-framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/src/ai-test-framework.ts -------------------------------------------------------------------------------- /common/Tests/Framework/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Framework/tsconfig.json -------------------------------------------------------------------------------- /common/Tests/Selenium/ExceptionHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Selenium/ExceptionHelper.js -------------------------------------------------------------------------------- /common/Tests/Selenium/ModuleLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Selenium/ModuleLoader.js -------------------------------------------------------------------------------- /common/Tests/Selenium/SimpleSyncPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/Tests/Selenium/SimpleSyncPromise.js -------------------------------------------------------------------------------- /common/config/rush/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/config/rush/.npmrc -------------------------------------------------------------------------------- /common/config/rush/command-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/config/rush/command-line.json -------------------------------------------------------------------------------- /common/config/rush/common-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/config/rush/common-versions.json -------------------------------------------------------------------------------- /common/config/rush/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/config/rush/npm-shrinkwrap.json -------------------------------------------------------------------------------- /common/config/rush/version-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/config/rush/version-policies.json -------------------------------------------------------------------------------- /common/publish/AzureStorageHelper/AzureStorageHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/publish/AzureStorageHelper/AzureStorageHelper.psm1 -------------------------------------------------------------------------------- /common/publish/Logging/Logging.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/publish/Logging/Logging.psm1 -------------------------------------------------------------------------------- /common/scripts/install-run-rush-silent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/scripts/install-run-rush-silent.js -------------------------------------------------------------------------------- /common/scripts/install-run-rush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/scripts/install-run-rush.js -------------------------------------------------------------------------------- /common/scripts/install-run-rushx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/scripts/install-run-rushx.js -------------------------------------------------------------------------------- /common/scripts/install-run-silent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/scripts/install-run-silent.js -------------------------------------------------------------------------------- /common/scripts/install-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/common/scripts/install-run.js -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/gruntfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/package.json -------------------------------------------------------------------------------- /policheck-exclusions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/policheck-exclusions.xml -------------------------------------------------------------------------------- /rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/rush.json -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/.gitignore -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/README.md -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/package.json -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/public/favicon.ico -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/public/index.html -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/public/logo192.png -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/public/logo512.png -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/public/manifest.json -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/public/robots.txt -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/src/App.css -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/src/App.test.js -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/src/App.tsx -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/ApplicationInsightsService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/src/ApplicationInsightsService.tsx -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/TestComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/src/TestComponent.tsx -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/TestPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/src/TestPage.tsx -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/src/index.css -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/src/index.tsx -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/src/reportWebVitals.ts -------------------------------------------------------------------------------- /sample/applicationinsights-react-sample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/sample/applicationinsights-react-sample/tsconfig.json -------------------------------------------------------------------------------- /scripts/dtsgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/scripts/dtsgen.js -------------------------------------------------------------------------------- /scripts/dtsgen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/scripts/dtsgen.ps1 -------------------------------------------------------------------------------- /tools/grunt-tasks/minifyNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/grunt-tasks/minifyNames.js -------------------------------------------------------------------------------- /tools/release-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/release-tools/README.md -------------------------------------------------------------------------------- /tools/release-tools/npm-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/release-tools/npm-package.js -------------------------------------------------------------------------------- /tools/release-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/release-tools/package.json -------------------------------------------------------------------------------- /tools/release-tools/package_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/release-tools/package_groups.json -------------------------------------------------------------------------------- /tools/release-tools/setAiVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/release-tools/setAiVersion.js -------------------------------------------------------------------------------- /tools/release-tools/setVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/release-tools/setVersion.js -------------------------------------------------------------------------------- /tools/release-tools/updatemanifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/release-tools/updatemanifest.js -------------------------------------------------------------------------------- /tools/release-tools/zipbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/release-tools/zipbrowser.js -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/rollup-plugin-uglify3-js/.eslintrc -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/dist/esm/rollup-plugin-uglify3-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/rollup-plugin-uglify3-js/dist/esm/rollup-plugin-uglify3-js.js -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/rollup-plugin-uglify3-js/package.json -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/rollup-plugin-uglify3-js/rollup.config.js -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/src/uglify3-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/rollup-plugin-uglify3-js/src/uglify3-js.ts -------------------------------------------------------------------------------- /tools/rollup-plugin-uglify3-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/rollup-plugin-uglify3-js/tsconfig.json -------------------------------------------------------------------------------- /tools/status-tools/github-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/status-tools/github-status.js -------------------------------------------------------------------------------- /tools/status-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/status-tools/package.json -------------------------------------------------------------------------------- /tools/subResourceIntegrity/generateIntegrityFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/subResourceIntegrity/generateIntegrityFile.js -------------------------------------------------------------------------------- /tools/updateDistEsm/updateDistEsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tools/updateDistEsm/updateDistEsm.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/version.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/applicationinsights-react-js/HEAD/yarn.lock --------------------------------------------------------------------------------