-
-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 694 Bytes
/
Copy pathtsconfig.json
File metadata and controls
21 lines (21 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"target": "ES2022",
"moduleResolution": "node",
"module": "es2020",
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"baseUrl": ".",
"paths": {
"wouter-preact": ["./types/index.d.ts"],
"wouter-preact/use-browser-location": ["./types/use-browser-location.d.ts"],
"wouter-preact/use-hash-location": ["./types/use-hash-location.d.ts"],
"wouter-preact/memory-location": ["./types/memory-location.d.ts"],
"wouter": ["../wouter/types/index.d.ts"]
},
"types": ["vitest/globals", "@testing-library/jest-dom", "preact"],
"skipLibCheck": true
},
"include": ["src/**/*", "test/**/*"]
}