-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
40 lines (40 loc) · 1.06 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
{
"compilerOptions": {
"target": "ES6",
"module": "CommonJS",
"lib": ["ES2021"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true,
"allowJs": false,
"moduleResolution": "Node",
"typeRoots": ["./node_modules/@types", "./src/types"],
"baseUrl": ".",
"types": ["node","jest", "mocha", "truffle", "chai", "truffle-contracts"],
"allowImportingTsExtensions": true,
"paths": {
"@cli/*": ["src/cli/*"],
"@blockchain/*": ["src/blockchain/*"],
"@zkp/*": ["src/zkp/*"],
"@storage/*": ["src/storage/*"],
"@utils/*": ["src/utils/*"],
"@types/*": ["src/types/*"]
},
// "moduleResolution": "bundler",
"noEmit": true, // Disable output generation, as this is primarily for testing
},
"include": [
"src/**/*",
"tests/**/*.ts"
],
"exclude": [
"node_modules",
"dist"
]
}