├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── action.yml ├── dist └── index.js ├── package.json ├── projectFixtures └── simple │ ├── package.json │ ├── src │ └── index.ts │ ├── tsconfig.json │ └── yarn.lock ├── scripts └── packLibDTS.js ├── src ├── doctor.ts ├── gen │ └── libDTS.ts ├── index.ts ├── langSvc │ ├── createHost.ts │ ├── createService.ts │ └── index.ts ├── loadTSModule.ts ├── reporter │ ├── helper.ts │ └── index.ts ├── types │ ├── index.ts │ └── message.ts └── utils │ ├── diagnostic.ts │ └── index.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/package.json -------------------------------------------------------------------------------- /projectFixtures/simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/projectFixtures/simple/package.json -------------------------------------------------------------------------------- /projectFixtures/simple/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/projectFixtures/simple/src/index.ts -------------------------------------------------------------------------------- /projectFixtures/simple/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/projectFixtures/simple/tsconfig.json -------------------------------------------------------------------------------- /projectFixtures/simple/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/projectFixtures/simple/yarn.lock -------------------------------------------------------------------------------- /scripts/packLibDTS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/scripts/packLibDTS.js -------------------------------------------------------------------------------- /src/doctor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/doctor.ts -------------------------------------------------------------------------------- /src/gen/libDTS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/gen/libDTS.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/langSvc/createHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/langSvc/createHost.ts -------------------------------------------------------------------------------- /src/langSvc/createService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/langSvc/createService.ts -------------------------------------------------------------------------------- /src/langSvc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/langSvc/index.ts -------------------------------------------------------------------------------- /src/loadTSModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/loadTSModule.ts -------------------------------------------------------------------------------- /src/reporter/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/reporter/helper.ts -------------------------------------------------------------------------------- /src/reporter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/reporter/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/types/message.ts -------------------------------------------------------------------------------- /src/utils/diagnostic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/utils/diagnostic.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/typescript-error-reporter-action/HEAD/yarn.lock --------------------------------------------------------------------------------