forked from MikronMIK32/web-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.types.json
38 lines (38 loc) · 1.22 KB
/
tsconfig.types.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
{
"compilerOptions": {
"declaration": true,
"emitDeclarationOnly": true,
"declarationDir": "types-dist",
"types": ["vite/client", "@emotion/react/types/css-prop", "node"],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"jsx": "preserve",
"jsxImportSource": "@emotion/react",
"paths": {
"@components/*": ["./src/components/*"],
"@views/*": ["./src/views/*"],
"@store/*": ["./src/store/*"],
"@containers/*": ["./src/containers/*"],
"@scripts/*": ["./src/scripts/*"],
"@hooks/*": ["./src/scripts/hooks/*"],
"@controls/*": ["./src/components/controls/*"],
"@context/*": ["./src/context/*"],
"@icons/*": ["src/icons/*"],
"@customTypes/*": ["src/types/*"],
"@api/*": ["./src/api/*"]
},
"typeRoots": ["./src/typings/", "./node_modules/@types/"]
},
"include": ["src/store", "src/scripts"],
"exclude": ["node_modules"],
"references": [{ "path": "./tsconfig.node.json" }]
}