├── .github └── workflows │ ├── build-windows.yml │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── category-style ├── .gitignore ├── LICENSE ├── README.MD ├── jest.config.js ├── package-lock.json ├── package.json ├── rollup.config.mjs ├── src │ └── typescript │ │ ├── main │ │ ├── api │ │ │ ├── Category.ts │ │ │ ├── CategoryConfig.ts │ │ │ ├── CategoryControl.ts │ │ │ ├── CategoryControlProvider.ts │ │ │ ├── CategoryProvider.ts │ │ │ └── CategoryRuntimeSettings.ts │ │ ├── impl │ │ │ ├── CategoryControlProviderImpl.ts │ │ │ ├── CategoryImpl.ts │ │ │ ├── CategoryProviderImpl.ts │ │ │ └── CategoryProviderService.ts │ │ ├── typescript-logging-category.ts │ │ └── util │ │ │ └── DebugUtil.ts │ │ └── test │ │ ├── TestCategoryControlProvider.spec.ts │ │ └── TestCategoryProvider.spec.ts ├── tsconfig.json ├── tsconfig.prod.json └── tslint.json ├── core ├── .gitignore ├── LICENSE ├── jest.config.base.js ├── jest.config.js ├── package-lock.json ├── package.json ├── rollup.config.base.mjs ├── rollup.config.mjs ├── src │ └── typescript │ │ ├── main │ │ ├── core │ │ │ ├── api │ │ │ │ ├── CoreLogger.ts │ │ │ │ ├── LogChannel.ts │ │ │ │ ├── LogId.ts │ │ │ │ ├── LogLevel.ts │ │ │ │ ├── LogMessage.ts │ │ │ │ ├── LogProvider.ts │ │ │ │ ├── RawLogChannel.ts │ │ │ │ ├── RawLogMessage.ts │ │ │ │ ├── config │ │ │ │ │ └── LogConfig.ts │ │ │ │ ├── runtime │ │ │ │ │ ├── LogRuntime.ts │ │ │ │ │ └── RuntimeSettings.ts │ │ │ │ └── type │ │ │ │ │ ├── ArgumentFormatterType.ts │ │ │ │ │ ├── DateFormatterType.ts │ │ │ │ │ ├── ExceptionType.ts │ │ │ │ │ ├── LogChannelType.ts │ │ │ │ │ ├── LogMessageType.ts │ │ │ │ │ ├── LoggerNameType.ts │ │ │ │ │ └── TypeUtils.ts │ │ │ ├── impl │ │ │ │ ├── CoreLoggerImpl.ts │ │ │ │ ├── DefaultFormatters.ts │ │ │ │ ├── LogProviderImpl.ts │ │ │ │ └── channel │ │ │ │ │ ├── ConsoleLogChannel.ts │ │ │ │ │ └── DefaultChannels.ts │ │ │ └── index.ts │ │ ├── internal │ │ │ └── InternalLogger.ts │ │ ├── typescript-logging.ts │ │ └── util │ │ │ ├── EnhancedMap.ts │ │ │ ├── StringUtil.ts │ │ │ └── index.ts │ │ └── test │ │ ├── TestClasses.ts │ │ ├── TestCoreLogger.spec.ts │ │ └── TestLogProvider.spec.ts ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.prod.json ├── tslint.base.json └── tslint.json ├── documentation ├── change_log.md └── migration.md ├── initialize.ps1 ├── initialize.sh ├── log4ts-style ├── .gitignore ├── LICENSE ├── README.MD ├── jest.config.js ├── package-lock.json ├── package.json ├── rollup.config.mjs ├── src │ └── typescript │ │ ├── main │ │ ├── api │ │ │ ├── Log4TSConfig.ts │ │ │ ├── Log4TSControl.ts │ │ │ ├── Log4TSControlProvider.ts │ │ │ ├── Log4TSGroupConfig.ts │ │ │ ├── Log4TSProvider.ts │ │ │ └── Logger.ts │ │ ├── impl │ │ │ ├── Log4TSControlProviderImpl.ts │ │ │ ├── Log4TSProviderImpl.ts │ │ │ └── Log4TSProviderService.ts │ │ ├── typescript-logging-log4ts.ts │ │ └── util │ │ │ └── DebugUtil.ts │ │ └── test │ │ ├── TestInternalLogging.spec.ts │ │ ├── TestLog4TSControl.spec.ts │ │ ├── TestLog4TSControlProvider.spec.ts │ │ └── TestLog4TSProvider.spec.ts ├── tsconfig.json ├── tsconfig.prod.json └── tslint.json ├── node-channel ├── .gitignore ├── LICENSE ├── README.MD ├── jest.config.js ├── package-lock.json ├── package.json ├── rollup.config.mjs ├── src │ └── typescript │ │ ├── main │ │ ├── api │ │ │ ├── NodeChannelOptions.ts │ │ │ ├── NodeChannelProvider.ts │ │ │ ├── RetentionStrategy.ts │ │ │ ├── RetentionStrategyMaxFilesOptions.ts │ │ │ └── index.ts │ │ ├── impl │ │ │ ├── AbstractNodeChannel.ts │ │ │ ├── FileUtils.ts │ │ │ ├── NodeLogChannel.ts │ │ │ ├── NodeLogWriter.ts │ │ │ ├── NodeRawLogChannel.ts │ │ │ ├── Queue.ts │ │ │ ├── RetentionStrategyMaxFiles.ts │ │ │ └── StreamCallBack.ts │ │ └── typescript-logging-node.ts │ │ └── test │ │ ├── TestNodeChannel.spec.ts │ │ ├── TestNodeLogWriter.spec.ts │ │ └── util │ │ ├── RollOverHelper.ts │ │ ├── StreamCallBackImpl.ts │ │ └── TestFileHelper.ts ├── tsconfig.json ├── tsconfig.prod.json └── tslint.json └── tests-integration ├── node-channel ├── .gitignore ├── package.json ├── src │ ├── main │ │ ├── config │ │ │ └── LogConfig.ts │ │ └── main.ts │ └── test │ │ ├── k6-test.js │ │ └── node-verify.ts └── tsconfig.json ├── rollup ├── .gitignore ├── cypress.config.ts ├── cypress │ ├── e2e │ │ ├── TestCategoryStyle.cy.ts │ │ └── TestLog4TSStyle.cy.ts │ ├── plugins │ │ └── index.js │ ├── support │ │ ├── commands.js │ │ └── e2e.js │ └── tsconfig.json ├── package.json ├── rollup.config.mjs ├── src │ ├── typescript │ │ └── main │ │ │ ├── LogConfig.ts │ │ │ ├── LogToIdRawLogChannel.ts │ │ │ └── index.ts │ └── web │ │ └── index.html ├── tsconfig.json └── tslint.json └── webpack ├── .gitignore ├── cypress.config.ts ├── cypress ├── e2e │ ├── TestCategoryStyle.cy.ts │ └── TestLog4TSStyle.cy.ts ├── plugins │ └── index.js ├── support │ ├── commands.js │ └── e2e.js └── tsconfig.json ├── package.json ├── src ├── typescript │ └── main │ │ ├── LogConfig.ts │ │ ├── LogToIdRawLogChannel.ts │ │ ├── RootComponent.tsx │ │ └── index.tsx └── web │ └── index.html ├── tsconfig.json ├── tslint.json └── webpack.config.js /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | dist 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/README.md -------------------------------------------------------------------------------- /category-style/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /category-style/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/LICENSE -------------------------------------------------------------------------------- /category-style/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/README.MD -------------------------------------------------------------------------------- /category-style/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/jest.config.js -------------------------------------------------------------------------------- /category-style/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/package-lock.json -------------------------------------------------------------------------------- /category-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/package.json -------------------------------------------------------------------------------- /category-style/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/rollup.config.mjs -------------------------------------------------------------------------------- /category-style/src/typescript/main/api/Category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/api/Category.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/api/CategoryConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/api/CategoryConfig.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/api/CategoryControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/api/CategoryControl.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/api/CategoryControlProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/api/CategoryControlProvider.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/api/CategoryProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/api/CategoryProvider.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/api/CategoryRuntimeSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/api/CategoryRuntimeSettings.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/impl/CategoryControlProviderImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/impl/CategoryControlProviderImpl.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/impl/CategoryImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/impl/CategoryImpl.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/impl/CategoryProviderImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/impl/CategoryProviderImpl.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/impl/CategoryProviderService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/impl/CategoryProviderService.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/typescript-logging-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/typescript-logging-category.ts -------------------------------------------------------------------------------- /category-style/src/typescript/main/util/DebugUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/main/util/DebugUtil.ts -------------------------------------------------------------------------------- /category-style/src/typescript/test/TestCategoryControlProvider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/test/TestCategoryControlProvider.spec.ts -------------------------------------------------------------------------------- /category-style/src/typescript/test/TestCategoryProvider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/src/typescript/test/TestCategoryProvider.spec.ts -------------------------------------------------------------------------------- /category-style/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/tsconfig.json -------------------------------------------------------------------------------- /category-style/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/category-style/tsconfig.prod.json -------------------------------------------------------------------------------- /category-style/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../core/tslint.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | README.md 4 | -------------------------------------------------------------------------------- /core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/LICENSE -------------------------------------------------------------------------------- /core/jest.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/jest.config.base.js -------------------------------------------------------------------------------- /core/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/jest.config.js -------------------------------------------------------------------------------- /core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/package-lock.json -------------------------------------------------------------------------------- /core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/package.json -------------------------------------------------------------------------------- /core/rollup.config.base.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/rollup.config.base.mjs -------------------------------------------------------------------------------- /core/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/rollup.config.mjs -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/CoreLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/CoreLogger.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/LogChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/LogChannel.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/LogId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/LogId.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/LogLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/LogLevel.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/LogMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/LogMessage.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/LogProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/LogProvider.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/RawLogChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/RawLogChannel.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/RawLogMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/RawLogMessage.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/config/LogConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/config/LogConfig.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/runtime/LogRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/runtime/LogRuntime.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/runtime/RuntimeSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/runtime/RuntimeSettings.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/type/ArgumentFormatterType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/type/ArgumentFormatterType.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/type/DateFormatterType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/type/DateFormatterType.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/type/ExceptionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/type/ExceptionType.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/type/LogChannelType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/type/LogChannelType.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/type/LogMessageType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/type/LogMessageType.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/type/LoggerNameType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/type/LoggerNameType.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/api/type/TypeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/api/type/TypeUtils.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/impl/CoreLoggerImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/impl/CoreLoggerImpl.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/impl/DefaultFormatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/impl/DefaultFormatters.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/impl/LogProviderImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/impl/LogProviderImpl.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/impl/channel/ConsoleLogChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/impl/channel/ConsoleLogChannel.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/impl/channel/DefaultChannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/impl/channel/DefaultChannels.ts -------------------------------------------------------------------------------- /core/src/typescript/main/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/core/index.ts -------------------------------------------------------------------------------- /core/src/typescript/main/internal/InternalLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/internal/InternalLogger.ts -------------------------------------------------------------------------------- /core/src/typescript/main/typescript-logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/typescript-logging.ts -------------------------------------------------------------------------------- /core/src/typescript/main/util/EnhancedMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/util/EnhancedMap.ts -------------------------------------------------------------------------------- /core/src/typescript/main/util/StringUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/util/StringUtil.ts -------------------------------------------------------------------------------- /core/src/typescript/main/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/main/util/index.ts -------------------------------------------------------------------------------- /core/src/typescript/test/TestClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/test/TestClasses.ts -------------------------------------------------------------------------------- /core/src/typescript/test/TestCoreLogger.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/test/TestCoreLogger.spec.ts -------------------------------------------------------------------------------- /core/src/typescript/test/TestLogProvider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/src/typescript/test/TestLogProvider.spec.ts -------------------------------------------------------------------------------- /core/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/tsconfig.base.json -------------------------------------------------------------------------------- /core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/tsconfig.json -------------------------------------------------------------------------------- /core/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/tsconfig.prod.json -------------------------------------------------------------------------------- /core/tslint.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/core/tslint.base.json -------------------------------------------------------------------------------- /core/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tslint.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /documentation/change_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/documentation/change_log.md -------------------------------------------------------------------------------- /documentation/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/documentation/migration.md -------------------------------------------------------------------------------- /initialize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/initialize.ps1 -------------------------------------------------------------------------------- /initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/initialize.sh -------------------------------------------------------------------------------- /log4ts-style/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /log4ts-style/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/LICENSE -------------------------------------------------------------------------------- /log4ts-style/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/README.MD -------------------------------------------------------------------------------- /log4ts-style/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/jest.config.js -------------------------------------------------------------------------------- /log4ts-style/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/package-lock.json -------------------------------------------------------------------------------- /log4ts-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/package.json -------------------------------------------------------------------------------- /log4ts-style/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/rollup.config.mjs -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/api/Log4TSConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/api/Log4TSConfig.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/api/Log4TSControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/api/Log4TSControl.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/api/Log4TSControlProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/api/Log4TSControlProvider.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/api/Log4TSGroupConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/api/Log4TSGroupConfig.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/api/Log4TSProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/api/Log4TSProvider.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/api/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/api/Logger.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/impl/Log4TSControlProviderImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/impl/Log4TSControlProviderImpl.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/impl/Log4TSProviderImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/impl/Log4TSProviderImpl.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/impl/Log4TSProviderService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/impl/Log4TSProviderService.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/typescript-logging-log4ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/typescript-logging-log4ts.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/main/util/DebugUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/main/util/DebugUtil.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/test/TestInternalLogging.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/test/TestInternalLogging.spec.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/test/TestLog4TSControl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/test/TestLog4TSControl.spec.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/test/TestLog4TSControlProvider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/test/TestLog4TSControlProvider.spec.ts -------------------------------------------------------------------------------- /log4ts-style/src/typescript/test/TestLog4TSProvider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/src/typescript/test/TestLog4TSProvider.spec.ts -------------------------------------------------------------------------------- /log4ts-style/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/tsconfig.json -------------------------------------------------------------------------------- /log4ts-style/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/log4ts-style/tsconfig.prod.json -------------------------------------------------------------------------------- /log4ts-style/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../core/tslint.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /node-channel/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /node-channel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/LICENSE -------------------------------------------------------------------------------- /node-channel/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/README.MD -------------------------------------------------------------------------------- /node-channel/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/jest.config.js -------------------------------------------------------------------------------- /node-channel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/package-lock.json -------------------------------------------------------------------------------- /node-channel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/package.json -------------------------------------------------------------------------------- /node-channel/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/rollup.config.mjs -------------------------------------------------------------------------------- /node-channel/src/typescript/main/api/NodeChannelOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/api/NodeChannelOptions.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/api/NodeChannelProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/api/NodeChannelProvider.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/api/RetentionStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/api/RetentionStrategy.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/api/RetentionStrategyMaxFilesOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/api/RetentionStrategyMaxFilesOptions.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/api/index.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/impl/AbstractNodeChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/impl/AbstractNodeChannel.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/impl/FileUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/impl/FileUtils.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/impl/NodeLogChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/impl/NodeLogChannel.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/impl/NodeLogWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/impl/NodeLogWriter.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/impl/NodeRawLogChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/impl/NodeRawLogChannel.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/impl/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/impl/Queue.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/impl/RetentionStrategyMaxFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/impl/RetentionStrategyMaxFiles.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/impl/StreamCallBack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/main/impl/StreamCallBack.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/main/typescript-logging-node.ts: -------------------------------------------------------------------------------- 1 | export * from "./api"; 2 | -------------------------------------------------------------------------------- /node-channel/src/typescript/test/TestNodeChannel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/test/TestNodeChannel.spec.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/test/TestNodeLogWriter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/test/TestNodeLogWriter.spec.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/test/util/RollOverHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/test/util/RollOverHelper.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/test/util/StreamCallBackImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/test/util/StreamCallBackImpl.ts -------------------------------------------------------------------------------- /node-channel/src/typescript/test/util/TestFileHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/src/typescript/test/util/TestFileHelper.ts -------------------------------------------------------------------------------- /node-channel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/tsconfig.json -------------------------------------------------------------------------------- /node-channel/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/tsconfig.prod.json -------------------------------------------------------------------------------- /node-channel/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/node-channel/tslint.json -------------------------------------------------------------------------------- /tests-integration/node-channel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/node-channel/.gitignore -------------------------------------------------------------------------------- /tests-integration/node-channel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/node-channel/package.json -------------------------------------------------------------------------------- /tests-integration/node-channel/src/main/config/LogConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/node-channel/src/main/config/LogConfig.ts -------------------------------------------------------------------------------- /tests-integration/node-channel/src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/node-channel/src/main/main.ts -------------------------------------------------------------------------------- /tests-integration/node-channel/src/test/k6-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/node-channel/src/test/k6-test.js -------------------------------------------------------------------------------- /tests-integration/node-channel/src/test/node-verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/node-channel/src/test/node-verify.ts -------------------------------------------------------------------------------- /tests-integration/node-channel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/node-channel/tsconfig.json -------------------------------------------------------------------------------- /tests-integration/rollup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/.gitignore -------------------------------------------------------------------------------- /tests-integration/rollup/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/cypress.config.ts -------------------------------------------------------------------------------- /tests-integration/rollup/cypress/e2e/TestCategoryStyle.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/cypress/e2e/TestCategoryStyle.cy.ts -------------------------------------------------------------------------------- /tests-integration/rollup/cypress/e2e/TestLog4TSStyle.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/cypress/e2e/TestLog4TSStyle.cy.ts -------------------------------------------------------------------------------- /tests-integration/rollup/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/cypress/plugins/index.js -------------------------------------------------------------------------------- /tests-integration/rollup/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/cypress/support/commands.js -------------------------------------------------------------------------------- /tests-integration/rollup/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/cypress/support/e2e.js -------------------------------------------------------------------------------- /tests-integration/rollup/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/cypress/tsconfig.json -------------------------------------------------------------------------------- /tests-integration/rollup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/package.json -------------------------------------------------------------------------------- /tests-integration/rollup/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/rollup.config.mjs -------------------------------------------------------------------------------- /tests-integration/rollup/src/typescript/main/LogConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/src/typescript/main/LogConfig.ts -------------------------------------------------------------------------------- /tests-integration/rollup/src/typescript/main/LogToIdRawLogChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/src/typescript/main/LogToIdRawLogChannel.ts -------------------------------------------------------------------------------- /tests-integration/rollup/src/typescript/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/src/typescript/main/index.ts -------------------------------------------------------------------------------- /tests-integration/rollup/src/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/src/web/index.html -------------------------------------------------------------------------------- /tests-integration/rollup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/rollup/tsconfig.json -------------------------------------------------------------------------------- /tests-integration/rollup/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../core/tslint.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /tests-integration/webpack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/.gitignore -------------------------------------------------------------------------------- /tests-integration/webpack/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/cypress.config.ts -------------------------------------------------------------------------------- /tests-integration/webpack/cypress/e2e/TestCategoryStyle.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/cypress/e2e/TestCategoryStyle.cy.ts -------------------------------------------------------------------------------- /tests-integration/webpack/cypress/e2e/TestLog4TSStyle.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/cypress/e2e/TestLog4TSStyle.cy.ts -------------------------------------------------------------------------------- /tests-integration/webpack/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/cypress/plugins/index.js -------------------------------------------------------------------------------- /tests-integration/webpack/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/cypress/support/commands.js -------------------------------------------------------------------------------- /tests-integration/webpack/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/cypress/support/e2e.js -------------------------------------------------------------------------------- /tests-integration/webpack/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/cypress/tsconfig.json -------------------------------------------------------------------------------- /tests-integration/webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/package.json -------------------------------------------------------------------------------- /tests-integration/webpack/src/typescript/main/LogConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/src/typescript/main/LogConfig.ts -------------------------------------------------------------------------------- /tests-integration/webpack/src/typescript/main/LogToIdRawLogChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/src/typescript/main/LogToIdRawLogChannel.ts -------------------------------------------------------------------------------- /tests-integration/webpack/src/typescript/main/RootComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/src/typescript/main/RootComponent.tsx -------------------------------------------------------------------------------- /tests-integration/webpack/src/typescript/main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/src/typescript/main/index.tsx -------------------------------------------------------------------------------- /tests-integration/webpack/src/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/src/web/index.html -------------------------------------------------------------------------------- /tests-integration/webpack/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/tsconfig.json -------------------------------------------------------------------------------- /tests-integration/webpack/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../core/tslint.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /tests-integration/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vauxite-org/typescript-logging/HEAD/tests-integration/webpack/webpack.config.js --------------------------------------------------------------------------------