Compare commits
1 Commits
be3e8eda7a
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| c63b38179d |
81
tsconfig.json
Normal file
81
tsconfig.json
Normal file
@ -0,0 +1,81 @@
|
||||
// {
|
||||
// "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"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user