* added components * added ai assistant button * change styling * improve AI assistant * change to a drawer * added command support into search * add AiAssistant to all projects * remove usage of Text component * added error handling * use recaptcha * fix new configurations * fix background color * change suggested questions
24 lines
402 B
JSON
24 lines
402 B
JSON
{
|
|
"extends": "tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"contentlayer/generated": [
|
|
"./.contentlayer/generated"
|
|
]
|
|
},
|
|
"jsx": "preserve",
|
|
"baseUrl": "."
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"tailwind.config.js",
|
|
"postcss.config.js",
|
|
]
|
|
}
|