forked from bitfocus/companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (36 loc) · 922 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
33
34
35
36
37
{
"include": ["lib/**/*.js", "lib/**/*.ts"],
"exclude": ["node_modules/**", "src/**/*spec.ts", "src/**/__tests__/*", "src/**/__mocks__/*"],
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./",
"paths": {
"*": ["./node_modules/*"],
},
"module": "Node16",
"moduleResolution": "Node16",
"allowJs": true,
"checkJs": true,
"strictPropertyInitialization": false,
"target": "es2022",
"noImplicitAny": true,
"sourceMap": true,
"declaration": false,
"importHelpers": false,
"listFiles": false,
"traceResolution": false,
"pretty": true,
"lib": ["es2022"],
"types": ["node"],
"strict": true,
"alwaysStrict": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
},
}