forked from balancer/frontend-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
40 lines (40 loc) · 1.13 KB
/
tsconfig.json
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
30
31
32
33
34
35
36
37
38
39
40
{
"compilerOptions": {
"target": "esnext",
"experimentalDecorators": true,
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"sourceMap": true,
"baseUrl": ".",
"noImplicitAny": false,
"resolveJsonModule": true,
"types": ["node", "vitest/globals", "vite/client"],
"paths": {
"@/*": ["src/*"],
"@tests/*": ["tests/*"],
// Stubbing vue-slider-component to ignore type errors from that module
"vue-slider-component": ["./src/types/vue-slider-component-stub.d.ts"],
"button-options": ["./src/components/_global/BalBtn/button-options.js"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
"include": [
"components.d.ts",
"auto-imports.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": ["node_modules", "dist"],
"files": ["node_modules/jest-extended/types/index.d.ts"]
}