We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5737ddd commit 649716bCopy full SHA for 649716b
web/tsconfig.json
@@ -2,7 +2,11 @@
2
"compilerOptions": {
3
"target": "ES2020",
4
"useDefineForClassFields": true,
5
- "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "lib": [
6
+ "ES2020",
7
+ "DOM",
8
+ "DOM.Iterable"
9
+ ],
10
"module": "ESNext",
11
"esModuleInterop": true,
12
"skipLibCheck": true,
@@ -23,7 +27,13 @@
23
27
{
24
28
"name": "next"
25
29
}
26
- ]
30
31
+ "baseUrl": ".",
32
+ "paths": {
33
+ "~/*": [
34
+ "./*"
35
+ ]
36
+ }
37
},
38
"include": [
39
"./src",
@@ -34,5 +44,7 @@
44
"app",
45
"components"
46
],
- "exclude": ["./node_modules"]
-}
47
+ "exclude": [
48
+ "./node_modules"
49
50
+}
0 commit comments