mirror of
https://github.com/averel10/crypto_clash.git
synced 2026-03-12 10:58:11 +01:00
- Added package.json with scripts for compiling, deploying, and testing the contract. - Created deploy.ts script for deploying the HelloWorld contract and saving the contract address to config.json. - Configured TypeScript with tsconfig.json for Node.js environment and ES module support.
18 lines
410 B
JSON
18 lines
410 B
JSON
/* Based on https://github.com/tsconfig/bases/blob/501da2bcd640cf95c95805783e1012b992338f28/bases/node22.json */
|
|
{
|
|
"compilerOptions": {
|
|
"lib": ["es2023"],
|
|
"module": "node16",
|
|
"target": "es2022",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node16",
|
|
"outDir": "dist"
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalEsm": true
|
|
}
|
|
}
|