Files
nextjs-notion-starter-kit/tsconfig.json

14 lines
325 B
JSON

{
"extends": "@fisch0920/config/tsconfig-react",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/components/*": ["components/*"],
"@/lib/*": ["lib/*"],
"@/styles/*": ["styles/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "*.config.ts"],
"exclude": ["node_modules"]
}