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 ee3ab6a commit a254ee2Copy full SHA for a254ee2
tsconfig.json
@@ -11,13 +11,19 @@
11
// --- STRONGLY RECOMMENDED ---
12
// Enabling strict mode is a best practice that helps catch bugs early.
13
"strict": true,
14
- "moduleResolution": "node16",
15
- "module": "Node16",
16
- "target": "esnext",
+ // ESM-aware resolution and output
+ "moduleResolution": "nodenext",
+ "module": "NodeNext",
17
+ "customConditions": [
18
+ "react-native"
19
+ ],
20
+ "target": "es2020",
21
+ "allowSyntheticDefaultImports": true,
22
"jsx": "react-jsx",
23
"esModuleInterop": true,
24
"skipLibCheck": true,
25
"forceConsistentCasingInFileNames": true,
26
+ // Path aliasing
27
"baseUrl": ".",
28
"paths": {
29
"@/*": [
0 commit comments