23 lines
506 B
JSON
23 lines
506 B
JSON
{
|
|
"extends": "@turbostarter/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
"@payload-config": ["./payload.config.ts"]
|
|
},
|
|
"plugins": [{ "name": "next" }],
|
|
"module": "esnext"
|
|
},
|
|
"include": [
|
|
"../../packages/ui/shared/src/typings/*.d.ts",
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|