-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (26 loc) · 976 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": {
"allowJs": true,
"checkJs": true,
// It is used so that TypeScript is aware of self-referencing package.
// https://nodejs.org/docs/latest-v22.x/api/packages.html#self-referencing-a-package-using-its-name
// https://www.typescriptlang.org/tsconfig/#node16nodenext
"module": "Node16",
"moduleResolution": "Node16",
"resolveJsonModule": true,
"noEmit": true,
"strict": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
// Until https://github.com/hashgraph/hedera-sdk-js/issues/2722 gets fixed
"skipLibCheck": true
},
"exclude": ["./examples/"]
}