-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig-docs.json
63 lines (63 loc) · 1.56 KB
/
tsconfig-docs.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"typedocOptions": {
"entryPoints": [
"src/maths/algebra/equation.ts",
"src/maths/algebra/linearSystem.ts",
"src/maths/algebra/logicalset.ts",
"src/maths/algebra/monom.ts",
"src/maths/algebra/polynom.ts",
"src/maths/algebra/rational.ts",
"src/maths/coefficients/fraction.ts",
"src/maths/coefficients/nthroot.ts",
"src/maths/expressions/numexp.ts",
"src/maths/expressions/polynomexp.ts",
"src/maths/geometry/circle.ts",
"src/maths/geometry/line.ts",
"src/maths/geometry/point.ts",
"src/maths/geometry/triangle.ts",
"src/maths/geometry/vector.ts",
"src/maths/numeric.ts",
"src/maths/shutingyard.ts"
],
"plugin": [
"./typedoc.katex.js"
],
"out": "docs"
},
"compilerOptions": {
/* Base options */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2022",
"allowJs": true,
"moduleDetection": "force",
"isolatedModules": true,
"verbatimModuleSyntax": true,
/* strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noImplicitAny": true,
/* Transpile */
"module": "ESNext",
"outDir": "dist",
"removeComments": true,
/* Building for a library */
"composite": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "dist/types",
/* Include only the src folder */
"lib": [
"ESNext",
],
},
"include": [
"src",
"tests",
"*.config.js",
"*.json",
"demo"
]
}