forked from Lichtblick-Suite/asam-osi-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (28 loc) · 969 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
{
"extends": "create-foxglove-extension/tsconfig/tsconfig.json",
"include": ["./src/**/*"],
"exclude": ["./src/**/*.test.ts"],
"compilerOptions": {
// "rootDirs": "./src",
"outDir": "./dist",
"lib": ["dom"],
// These two settings prevent typescript from emitting .d.ts files we don't need in
// the compiled extension.
"composite": false,
"declaration": false,
// Additional TypeScript error reporting checks are enabled by default to improve code quality.
// Enable/disable these checks as necessary to suit your coding preferences or work with
// existing code
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@common-types/*": ["./common/types/*"],
"@utils/*": ["./common/utils/*"]
}
}
}