forked from f3rno64/numbers-from-words
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (43 loc) · 1.08 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
{
"include": ["src/**/*"],
"ts-node": {
"files": true
},
"compilerOptions": {
"target": "esnext",
"esModuleInterop": true,
"incremental": true,
"declaration": true,
"module": "commonjs",
"lib": ["esnext"],
"moduleResolution": "node",
"rootDir": "./src",
"outDir": "./dist",
"baseUrl": "./src",
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"alwaysStrict": true,
"sourceMap": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"exactOptionalPropertyTypes": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true
},
"typedocOptions": {
"githubPages": true,
"cacheBust": true,
"hideGenerator": true,
"searchInComments": true,
"cleanOutputDir": true,
"entryPoints": ["src/index.ts"],
"out": "docs"
}
}