web3/tsconfig.json
2024-07-28 16:07:17 +07:00

21 lines
No EOL
401 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"declaration": true,
"lib": [
"ESNext",
"DOM"
],
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@common/*": ["common/*"]
}
}
}