mirror of
https://github.com/payloadcms/payload.git
synced 2026-03-26 19:38:18 +00:00
18 lines
387 B
JSON
18 lines
387 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noUnusedLocals": false, // Undo this
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
},
|
|
"exclude": [
|
|
"src/**/*.test.ts"
|
|
]
|
|
}
|