We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea4c564 commit 5d4d26fCopy full SHA for 5d4d26f
1 file changed
packages/tsconfig/base.json
@@ -2,19 +2,19 @@
2
"$schema": "https://json.schemastore.org/tsconfig",
3
"display": "Base",
4
"compilerOptions": {
5
- "target": "ES2020",
6
- "lib": ["ES2020", "ES2021"],
7
- "module": "ES2020",
+ "target": "esnext",
+ "module": "esnext",
+ "moduleResolution": "bundler",
8
"noEmit": true,
9
"skipLibCheck": true,
10
"strict": true,
11
"strictNullChecks": true,
12
- "allowSyntheticDefaultImports": true,
13
"esModuleInterop": true,
14
"importHelpers": true,
15
"noLib": false,
16
"noImplicitAny": false,
17
"incremental": false,
18
- "forceConsistentCasingInFileNames": true
+ "forceConsistentCasingInFileNames": true,
+ "sourceMap": true
19
}
20
0 commit comments