-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (56 loc) · 2.47 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"compilerOptions": {
"target": "es2017",
"module": "esnext",
"lib": ["esnext"],
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"jsx": "preserve",
"types": [
"node",
"vite/client"
],
"paths": {
"@unocss/autocomplete": ["./packages/autocomplete/src/index.ts"],
"@unocss/config": ["./packages/config/src/index.ts"],
"@unocss/core": ["./packages/core/src/index.ts"],
"@unocss/inspector": ["./packages/inspector/node/index.ts"],
"@unocss/preset-attributify": ["./packages/preset-attributify/src/index.ts"],
"@unocss/preset-icons": ["./packages/preset-icons/src/index.ts"],
"@unocss/preset-mini": ["./packages/preset-mini/src/index.ts"],
"@unocss/preset-tagify": ["./packages/preset-tagify/src/index.ts"],
"@unocss/preset-mini/rules": ["./packages/preset-mini/src/rules.ts"],
"@unocss/preset-mini/utils": ["./packages/preset-mini/src/utils.ts"],
"@unocss/preset-mini/variants": ["./packages/preset-mini/src/variants.ts"],
"@unocss/preset-typography": ["./packages/preset-typography/src/index.ts"],
"@unocss/preset-uno": ["./packages/preset-uno/src/index.ts"],
"@unocss/preset-web-fonts": ["./packages/preset-web-fonts/src/index.ts"],
"@unocss/preset-wind": ["./packages/preset-wind/src/index.ts"],
"@unocss/preset-rem-to-px": ["./packages/preset-rem-to-px/src/index.ts"],
"@unocss/shared-integration": ["./packages/shared-integration/src/index.ts"],
"@unocss/shared-docs": ["./packages/shared-docs/src/index.ts"],
"@unocss/shared-common": ["./packages/shared-common/src/index.ts"],
"@unocss/transformer-directives": ["./packages/transformer-directives/src/index.ts"],
"@unocss/transformer-variant-group": ["./packages/transformer-variant-group/src/index.ts"],
"@unocss/transformer-compile-class": ["./packages/transformer-compile-class/src/index.ts"],
"@unocss/transformer-attributify-jsx": ["./packages/transformer-attributify-jsx/src/index.ts"],
"@unocss/vite": ["./packages/vite/src/index.ts"],
"unocss": ["./packages/unocss/src/index.ts"],
"unocss/vite": ["./packages/unocss/src/vite.ts"]
}
},
"exclude": [
"**/dist/**",
"**/node_modules/**",
"**/client/**",
"**/playground/**",
"**/examples/**",
"**/interactive/**",
"**/test/dts/**"
]
}