Files
pnpm/cli/default-reporter/tsconfig.json
Zoltan Kochan 5e32ea9b19 fix: update TypeScript to v5 (#5990)
Co-authored-by: Brandon Cheng <gluxon@users.noreply.github.com>
2023-02-23 13:05:44 +02:00

32 lines
566 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"suppressImplicitAnyIndexErrors": true,
"ignoreDeprecations": "5.0"
},
"include": [
"src/**/*.ts",
"../../__typings__/**/*.d.ts"
],
"references": [
{
"path": "../../config/config"
},
{
"path": "../../packages/core-loggers"
},
{
"path": "../../packages/error"
},
{
"path": "../../packages/render-peer-issues"
},
{
"path": "../../packages/types"
}
],
"composite": true
}