forked from vendetta-mod/Vendetta
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: loader config not restoring correctly in some cases
- Loading branch information
PalmDevs
authored and
PalmDevs
committed
Mar 19, 2024
1 parent
ec63ce0
commit 0db174a
Showing
6 changed files
with
57 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
{ | ||
"include": ["src"], | ||
"exclude": ["node_modules"], | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"sourceMap": true, | ||
"module": "ESNext", | ||
"target": "ESNext", | ||
"moduleResolution": "node", | ||
"esModuleInterop": true, | ||
"jsx": "react", | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
"paths": { | ||
"@/*": ["src/*"], | ||
"@types": ["src/def.d.ts"], | ||
"@lib/*": ["src/lib/*"], | ||
"@metro/*": ["src/lib/metro/*"], | ||
"@ui/*": ["src/ui/*"] | ||
} | ||
} | ||
"include": ["src"], | ||
"exclude": ["node_modules"], | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"sourceMap": true, | ||
"module": "ESNext", | ||
"target": "ESNext", | ||
"moduleResolution": "node", | ||
"esModuleInterop": true, | ||
"jsx": "react", | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
"paths": { | ||
"@/*": ["src/*"], | ||
"@types": ["src/def.d.ts"], | ||
"@lib/*": ["src/lib/*"], | ||
"@metro/*": ["src/lib/metro/*"], | ||
"@ui/*": ["src/ui/*"] | ||
} | ||
} | ||
} |