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 9412a18 commit c723f03Copy full SHA for c723f03
templates/typescript/tsconfig.json
@@ -1,11 +1,7 @@
1
{
2
"compilerOptions": {
3
"target": "es5",
4
- "lib": [
5
- "dom",
6
- "dom.iterable",
7
- "esnext"
8
- ],
+ "lib": ["dom", "dom.iterable", "esnext"],
9
"allowJs": true,
10
"skipLibCheck": true,
11
"strict": true,
@@ -17,14 +13,12 @@
17
13
"resolveJsonModule": true,
18
14
"isolatedModules": true,
19
15
"jsx": "preserve",
20
- "incremental": true
16
+ "incremental": true,
+ "baseUrl": ".",
+ "paths": {
+ "@/*": ["*"]
+ }
21
},
22
- "include": [
23
- "next-env.d.ts",
24
- "**/*.ts",
25
- "**/*.tsx"
26
27
- "exclude": [
28
- "node_modules"
29
- ]
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
+ "exclude": ["node_modules"]
30
}
0 commit comments