-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
32 lines (32 loc) · 1.03 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
{
"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/hello/model/PCA20035+solar": [
"hello/model/PCA20035+solar/index.d.ts"
],
"@hello.nrfcloud.com/proto/nrfCloud": ["nrfCloud/index.d.ts"]
}
}
}