* feat: update templates to 2.0 and support create-payload-app * chore: rich text updates * chore(templates): remove mongoURL * chore: migrates rich text fields in website * chore: manually aliases dotenv in templates * chore: installs new beta in website template * chore: type issues * chore (template): add alias for fs to website template * chore: more template updates --------- Co-authored-by: James <james@trbl.design> Co-authored-by: Dan Ribbens <dan.ribbens@gmail.com>
23 lines
477 B
JSON
23 lines
477 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"jsx": "react",
|
|
"paths": {
|
|
"payload/generated-types": ["./src/payload-types.ts"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", "build"],
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"swc": true
|
|
}
|
|
}
|