blob: 4357768698ec90d15fce846566b2c4ff4c6a43bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@hoarder/tsconfig/node.json",
"include": ["src", "vite.config.mts"],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"baseUrl": ".",
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
"strictNullChecks": true,
"paths": {
"@/*": ["./src/*"]
}
}
}
|