-
Notifications
You must be signed in to change notification settings - Fork 265
/
tsconfig.json
54 lines (54 loc) · 1.86 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"compilerOptions": {
"target": "es2020",
"lib": ["dom", "esnext", "es2017.object"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"rootDir": ".",
"declaration": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"downlevelIteration": true,
"inlineSourceMap": true,
"declarationMap": true,
"importHelpers": true,
"resolveJsonModule": true,
"composite": true,
"skipLibCheck": true,
"noImplicitOverride": true
},
"references": [
{ "path": "accounts/tsconfig.json" },
{ "path": "simulator/tsconfig.json" },
{ "path": "archiver/tsconfig.json" },
{ "path": "aztec-faucet/tsconfig.json" },
{ "path": "aztec.js/tsconfig.json" },
{ "path": "aztec-node/tsconfig.json" },
{ "path": "bb-prover/tsconfig.json" },
{ "path": "pxe/tsconfig.json" },
{ "path": "aztec/tsconfig.json" },
{ "path": "circuits.js/tsconfig.json" },
{ "path": "circuit-types/tsconfig.json" },
{ "path": "end-to-end/tsconfig.json" },
{ "path": "foundation/tsconfig.json" },
{ "path": "key-store/tsconfig.json" },
{ "path": "l1-artifacts/tsconfig.json" },
{ "path": "merkle-tree/tsconfig.json" },
{ "path": "noir-contracts.js/tsconfig.json" },
{ "path": "builder/tsconfig.json" },
{ "path": "noir-protocol-circuits-types/tsconfig.json" },
{ "path": "p2p/tsconfig.json" },
{ "path": "p2p-bootstrap/tsconfig.json" },
{ "path": "protocol-contracts/tsconfig.json" },
{ "path": "prover-client/tsconfig.json" },
{ "path": "sequencer-client/tsconfig.json" },
{ "path": "types/tsconfig.json" },
{ "path": "world-state/tsconfig.json" },
{ "path": "scripts/tsconfig.json" },
{ "path": "entrypoints/tsconfig.json" },
{ "path": "cli/tsconfig.json" }
],
"files": ["./@types/jest/index.d.ts"],
"exclude": ["node_modules"]
}