forked from flare-foundation/attestation-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 798 Bytes
/
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
{
"compilerOptions": {
"target": "ES2017",
"module": "commonjs",
"sourceMap": true,
"outDir": "dist",
"strictNullChecks": false,
"noFallthroughCasesInSwitch": false,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"],
"@atc/common": ["src/servers/common/src"],
"@atc/common/*": ["src/servers/common/src/*"]
},
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"lib": [
"ES2021.String"
]
},
"include": ["src/**/*", "./typechain-web3-v1", "./typechain-web3-v1-new", "./typechain-truffle", "./test"],
"files": ["./hardhat.config.ts"]
}