-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 1.38 KB
/
Copy pathtsconfig.json
File metadata and controls
37 lines (37 loc) · 1.38 KB
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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["node", "vitest/globals"]
},
"include": ["src", "tests", "tsup.config.ts", "vitest.config.ts", "vitest.workspace.ts"],
"exclude": [
"tests/thai-address-autocomplete.test.tsx",
"tests/thai-address-cascade-select.test.tsx",
"tests/use-thai-address-cascade.test.tsx",
"tests/thai-address-autocomplete-loading.test.tsx",
"tests/thai-address-display.test.tsx",
"tests/thai-address-form.test.tsx",
"tests/thai-address-form-field.test.tsx",
"tests/thai-address-cascade-select.base.test.tsx",
"tests/thai-address-autocomplete.base.test.tsx",
"tests/thai-address-form.base.test.tsx",
"tests/thai-address-form-field.base.test.tsx",
"tests/thai-address-cascade-select.radix.test.tsx",
"tests/thai-address-autocomplete.radix.test.tsx",
"tests/thai-address-form.radix.test.tsx",
"tests/thai-address-form-field.radix.test.tsx",
"tests/thai-address-cascade-select.aria.test.tsx",
"tests/thai-address-autocomplete.aria.test.tsx",
"tests/thai-address-form.aria.test.tsx",
"tests/thai-address-form-field.aria.test.tsx",
"tests/shared/**"
]
}