-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtsconfig.json
39 lines (36 loc) · 1.17 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"module": "CommonJS",
"target": "ES2020",
"outDir": "./build",
"esModuleInterop": true,
"declaration": true,
"preserveSymlinks": true,
"preserveWatchOutput": true,
"noImplicitOverride": true
},
"files": [
"src/01_deposit.ts",
"src/02_transfer.ts",
"src/03_transfer_paymaster.ts",
"src/04_withdraw.ts",
"src/05_withdraw_paymaster.ts",
"src/06_finalize_withdraw.ts",
"src/07_deposit_token.ts",
"src/08_transfer_token.ts",
"src/09_transfer_token_paymaster.ts",
"src/10_withdraw_token.ts",
"src/11_withdraw_token_paymaster.ts",
"src/12_deploy_create.ts",
"src/13_deploy_create_with_constructor.ts",
"src/14_deploy_create_with_deps.ts",
"src/15_deploy_create2.ts",
"src/16_deploy_create2_with_constructor.ts",
"src/17_deploy_create2_with_deps.ts",
"src/18_deploy_token_create.ts",
"src/19_deploy_token_create2.ts",
"src/20_deploy_create_account.ts",
"src/21_deploy_create2_account.ts",
"src/22_use_paymaster.ts"
]
}