-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.json
49 lines (49 loc) · 1.38 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"compilerOptions": {
"allowJs": false,
"checkJs": false,
"noEmit": true,
"stripInternal": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"declaration": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": false,
"lib": ["esnext"],
"module": "commonjs",
"moduleResolution": "node",
"newLine": "LF",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noStrictGenericChecks": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": ".",
"pretty": true,
"removeComments": false,
"strict": true,
"skipLibCheck": false,
"skipDefaultLibCheck": false,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "ES2022",
"isolatedModules": true
},
"exclude": ["node_modules", "node_modules/**/*", ".eslintcache/**/*", "temp/**/*", "build/**/*"],
"typeAcquisition": {
"enable": true
},
"typedocOptions": {
"out": "docs",
"entryPoints": "src/index.ts",
"exclude": ["test/**/*", "node_modules/**/*", "temp/**/*", "build/**/*", "docs/**/*"]
}
}