2024-04-15 13:16:08 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"incremental": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"],
|
2024-04-15 15:00:47 -07:00
|
|
|
"@/config": ["./src/app/config.ts"],
|
|
|
|
"@/components/*": ["./src/app/components/*"],
|
|
|
|
"@/provider/*": ["./src/app/provider/*"],
|
|
|
|
"@/font/*": ["./src/app/font/*"],
|
|
|
|
"@/types/*": ["./src/app/types/*"],
|
2024-04-19 22:33:33 -07:00
|
|
|
"@/lib/*": ["./src/app/common/*"],
|
2024-04-21 20:11:15 -07:00
|
|
|
"@/lib": ["./src/app/common/utils.ts"],
|
2024-04-19 22:33:33 -07:00
|
|
|
"@/markdown/*": ["./src/markdown/*"],
|
2024-04-15 15:00:47 -07:00
|
|
|
"@/configJson": ["./config.json"]
|
2024-04-15 13:16:08 -07:00
|
|
|
}
|
|
|
|
},
|
2024-04-19 22:58:13 -07:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
2024-04-15 13:16:08 -07:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|