Files
payload/packages/db-postgres/tsconfig.json
Alessio Gravili ae7d6f97d2 chore: formatting and linting (#3261)
* chore: lint packages/payload

* chore: lint packages/db-postgres

* chore: lint packages/db-mongodb

* chore: update eslintrc exclusion rules

* chore: update eslintrc exclusion rules

* chore: lint misc files

* chore: run prettier through packages

* chore: run eslint on payload again

* chore: prettier misc files

* chore: prettier docs
2023-09-01 17:39:44 +02:00

28 lines
963 B
JSON

{
"compilerOptions": {
"composite": true,
"declaration": true /* Generates corresponding '.d.ts' file. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"module": "NodeNext",
"moduleResolution": "NodeNext" /* Required for exports to work */,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
"resolveJsonModule": true,
"rootDir": "./src" /* Specify the root folder within your source files. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"target": "ESNext"
},
"exclude": [
"dist",
"build",
"tests",
"test",
"node_modules",
".eslintrc.js",
"**/*.spec.js",
"**/*.spec.jsx",
"**/*.spec.ts",
"**/*.spec.tsx"
]
}