chore(tsconfig.json): add "moduleResolution" property with value "node" to improve module resolution in the project configuration

This commit is contained in:
Sped0n
2023-10-29 12:30:25 +08:00
parent 60c8148f56
commit d7cabdb894

View File

@@ -8,8 +8,9 @@
"strict": true, "strict": true,
"esModuleInterop": true, "esModuleInterop": true,
"skipLibCheck": true, "skipLibCheck": true,
"forceConsistentCasingInFileNames": true "forceConsistentCasingInFileNames": true,
"moduleResolution": "node"
}, },
"$schema": "https://json.schemastore.org/tsconfig", "$schema": "https://json.schemastore.org/tsconfig",
"display": "Recommended" "display": "Recommended"
} }