-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
32 lines (32 loc) · 1001 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
29
30
31
32
{
"compilerOptions": {
"target": "es2019",
"lib": ["es2022"],
"noImplicitAny": true,
"noImplicitThis": true,
"noUncheckedSideEffectImports": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"module": "Node16",
"moduleResolution": "Node16",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"noErrorTruncation": true,
"skipLibCheck": true,
"typeRoots": ["node_modules/@types"],
"paths": {
"@hyperswarm/secret-stream": [
"./node_modules/@digidem/types/vendor/@hyperswarm/secret-stream/index.d.ts"
],
"*": ["./types", "./node_modules/@digidem/types/vendor/*/index.d.ts"]
}
},
"include": ["src/**/*", "types/**/*.d.ts", "test/**/*", "test-e2e/**/*"],
"exclude": ["node_modules", "src/generated/*.js"]
}