-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.json
33 lines (33 loc) · 987 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
{
"compilerOptions": {
"target": "ES2021",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"rootDir": "./lib",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noUncheckedIndexedAccess": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": ["lib"],
"typedocOptions": {
"name": "Genius-Lyrics Documentation",
"entryPoints": ["./lib/index.ts"],
"out": "./docs",
"json": "./docs/docs.json",
"excludeExternals": true
}
}