lifetracker/apps/web/tsconfig.json

27 lines
432 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@lifetracker/typescript-config/base.json",
"compilerOptions": {
"baseUrl": ".",
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
".next"
]
}