18 lines
422 B
JSON
18 lines
422 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"outDir": "./dist",
|
|
"allowJs": true,
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"declarationDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts", "src/**/*.json"],
|
|
"references": [{ "path": "../payload" }]
|
|
}
|