Additionally, the scope of `pnpm eslint` has been expanded to cover the entire project, not only src.
36 lines
711 B
JSON
36 lines
711 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"exclude": [],
|
|
"include": [
|
|
"**/*.js",
|
|
"**/*.jsx",
|
|
"**/*.mjs",
|
|
"**/*.cjs",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"../src/**/*.ts",
|
|
"../src/**/*.tsx",
|
|
"next.config.mjs",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@payload-config": [
|
|
"./payload.config.ts"
|
|
],
|
|
"plugin-package-name-placeholder": [
|
|
"../src/index.ts"
|
|
],
|
|
"plugin-package-name-placeholder/client": [
|
|
"../src/exports/client.ts"
|
|
],
|
|
"plugin-package-name-placeholder/rsc": [
|
|
"../src/exports/rsc.ts"
|
|
]
|
|
},
|
|
"noEmit": true,
|
|
"emitDeclarationOnly": false,
|
|
}
|
|
}
|