-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (36 loc) · 1.09 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
{
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
"module": "ESNext",
"skipLibCheck": true,
"composite": true,
/* Bundler mode */
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"*": ["src/types/*"],
"#assets": ["src/assets"],
"#lib/*": ["src/lib/*"],
"#helpers": ["src/lib/helpers"],
"#helpers/*": ["src/lib/helpers/*"],
"#components/*": ["src/client/components/*"],
"#contexts": ["src/client/contexts"],
"#libTestUtils": ["src/lib/test/testUtils.ts"],
"#clientTestUtils": ["src/client/test/testUtils.tsx"],
"#server/*": ["src/server/*"],
"#hooks/*": ["src/client/hooks/*"],
"#musicquizgenerator/types": ["src/types"]
}
},
"include": ["src", "src/**/*.json"],
"references": [{ "path": "./tsconfig.node.json" }]
}