web3/tsconfig.json
2024-07-26 16:13:13 +07:00

20 lines
No EOL
376 B
JSON

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