forked from hop-protocol/hop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 838 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 838 Bytes
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
{
"compilerOptions": {
"lib": ["dom", "es2017", "esnext"],
"types": ["node", "jest"],
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"declaration": true,
"declarationDir": "dist",
"declarationMap": true,
"skipLibCheck": true,
"target": "es2015",
"noImplicitAny": true,
"noUnusedLocals": false,
"moduleResolution": "node",
"sourceMap": false,
"outDir": "dist",
"baseUrl": "src",
"resolveJsonModule": true,
"experimentalDecorators": true,
"paths": {
"@src/*": ["*"]
},
"forceConsistentCasingInFileNames": true,
"typeRoots": ["node", "./node_modules/@types", "./@types"]
},
"include": ["src", "@types"],
"exclude": ["node_modules", "dist", "test", "**/*.test.ts"]
}