-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 844 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 844 Bytes
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
27
28
29
{
"include": ["src", "test", "examples"],
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"outDir": "dist",
"declaration": true,
"sourceMap": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["vitest/globals", "vite/client"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@balancer/sdk": ["src/index.ts"]
}
}
}