Files
payloadcms/test/tsconfig.json
Alessio Gravili 7880fb402a chore: playwright support (#5262)
* working playwright

* chore: use zipped, local build of playwright instead of patching it

* chore: remove bloat

* chore: get playwright and lexical to work by fixing imports from cjs modules
2024-03-08 10:56:13 -05:00

26 lines
638 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"noEmit": false /* Do not emit outputs. */,
"emitDeclarationOnly": true,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
"rootDir": "../" /* Specify the root folder within your source files. */,
},
"exclude": ["dist", "build", "node_modules", ".eslintrc.js"],
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.d.ts",
"src/**/*.json",
"**/*.ts",
"**/*.ts",
"test/**/*.tsx",
"../packages/**/src/**/*.ts",
"../packages/**/src/**/*.tsx"],
"plugins": [
{
"name": "next",
},
],
}