blob: fb0f82443a2fae4f529051d653b7bae0997eb4d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
// Core TypeScript compiler configuration.
// -- Central to type checking, used by Vite, Jest, and ESLint.
"exclude": [
"dist",
"src/api/"
],
"files": [],
"references": [
{
"path": "./tsconfig.build.json"
},
{
"path": "./tsconfig.node.json"
}
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*", "tests/*"
]
}
}
}
|