blob: d86b8ca462305fed93ba8699ac1d488909d4b8f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"lib": ["DOM", "DOM.Iterable"],
"paths": {
"@/*": ["./src/*"]
}
}
}
|