23 lines
473 B
JSON
23 lines
473 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": ["./types/payload.ts"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", "build"],
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"swc": true
|
|
}
|
|
}
|