nextload/tsconfig.json

51 lines
874 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-24 16:00:44 +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 16:00:44 +00:00
"jsx": "preserve",
2024-02-27 19:10:20 +00:00
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
2024-06-24 16:00:44 +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-24 16:00:44 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2024-02-27 19:10:20 +00:00
}