Files
pnpm/lockfile/plugin-commands-audit/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

50 lines
893 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"suppressImplicitAnyIndexErrors": true,
"ignoreDeprecations": "5.0"
},
"include": [
"src/**/*.ts",
"../../__typings__/**/*.d.ts"
],
"references": [
{
"path": "../../__utils__/test-fixtures"
},
{
"path": "../../cli/cli-utils"
},
{
"path": "../../config/config"
},
{
"path": "../../network/auth-header"
},
{
"path": "../../packages/constants"
},
{
"path": "../../packages/error"
},
{
"path": "../../packages/types"
},
{
"path": "../../pkg-manager/plugin-commands-installation"
},
{
"path": "../../pkg-manifest/read-project-manifest"
},
{
"path": "../audit"
},
{
"path": "../lockfile-file"
}
],
"composite": true
}