nextload/tsconfig.json

32 lines
759 B
JSON
Raw Normal View History

2024-02-27 19:10:20 +00:00
{
"compilerOptions": {
2024-03-08 20:15:39 +00:00
"baseUrl": ".",
2024-06-23 08:31:42 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
2024-02-27 19:10:20 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
2024-03-06 21:18:34 +00:00
"moduleResolution": "bundler",
2024-02-27 19:10:20 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
2024-06-24 15:34:40 +00:00
"jsx": "react-jsx",
2024-02-27 19:10:20 +00:00
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
2024-06-23 08:31:42 +00:00
"@/*": ["./src/*"],
"@payload/*": ["./src/app/(payload)/*"],
"@app/*": ["./src/app/(app)/*"],
"@payload-config": ["./payload.config.ts"]
2024-04-27 16:03:41 +00:00
},
"target": "ES2017"
2024-02-27 19:10:20 +00:00
},
2024-06-23 08:31:42 +00:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
2024-02-27 19:10:20 +00:00
}