tailwind-nextjs-blog/jsconfig.json

13 lines
270 B
JSON
Raw Normal View History

2022-07-17 21:40:41 +08:00
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/components/*": ["components/*"],
"@/data/*": ["data/*"],
"@/layouts/*": ["layouts/*"],
"@/css/*": ["css/*"],
"contentlayer/generated": ["./.contentlayer/generated"]
2022-07-17 21:40:41 +08:00
}
}
}