-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
29 lines (29 loc) · 936 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
{
"compilerOptions": {
"target": "esnext",
"module": "nodenext",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"esModuleInterop": true,
"strict": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noEmit": true,
"verbatimModuleSyntax": true,
"baseUrl": ".",
"skipLibCheck": true,
"paths": {
"@hello.nrfcloud.com/proto": ["index.d.ts"],
"@hello.nrfcloud.com/proto/fingerprint": ["fingerprint/index.d.ts"],
"@hello.nrfcloud.com/proto/hello": ["hello/index.d.ts"],
"@hello.nrfcloud.com/proto/hello/history": ["hello/history/index.d.ts"],
"@hello.nrfcloud.com/proto/nrfCloud": ["nrfCloud/index.d.ts"]
}
}
}