78 lines
1.4 KiB
JSON
78 lines
1.4 KiB
JSON
// {
|
|
// "compilerOptions": {
|
|
// "lib": [
|
|
// "dom",
|
|
// "dom.iterable",
|
|
// "esnext"
|
|
// ],
|
|
// "allowJs": true,
|
|
// "skipLibCheck": true,
|
|
// "strict": false,
|
|
// "noEmit": true,
|
|
// "incremental": true,
|
|
// "esModuleInterop": true,
|
|
// "module": "esnext",
|
|
// "moduleResolution": "node",
|
|
// "resolveJsonModule": true,
|
|
// "isolatedModules": true,
|
|
// "jsx": "preserve",
|
|
// "plugins": [
|
|
// {
|
|
// "name": "next"
|
|
// }
|
|
// ]
|
|
// },
|
|
// "include": [
|
|
// "next-env.d.ts",
|
|
// ".next/types/**/*.ts",
|
|
// "**/*.ts",
|
|
// "**/*.tsx"
|
|
// ],
|
|
// "exclude": [
|
|
// "node_modules"
|
|
// ]
|
|
// }
|
|
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"@payload-config": [
|
|
"./src/payload.config.ts"
|
|
]
|
|
},
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"target": "ES2017"
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |