hasari-api / apps /web /tsconfig.json
erdoganpeker's picture
v0.3.0 — multimodal vehicle damage MVP
e327f0d
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "Bundler",
"jsx": "preserve",
"allowJs": false,
"noEmit": true,
"incremental": true,
"plugins": [{ "name": "next" }],
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@arac-hasar/types": ["../../packages/types/src/index.ts"],
"@arac-hasar/types/*": ["../../packages/types/src/*"],
"@arac-hasar/ui": ["../../packages/ui/src/index.ts"],
"@arac-hasar/ui/*": ["../../packages/ui/src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": ["node_modules", ".next", "out"]
}