-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
56 lines (54 loc) · 2.45 KB
/
tsconfig.json
File metadata and controls
56 lines (54 loc) · 2.45 KB
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
{
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": false,
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
/* TypeScript 6.0 Features */
"noUncheckedSideEffectImports": true,
"strictBuiltinIteratorReturn": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"jsx": "preserve",
"incremental": true,
"paths": {
"@nextcalc/types": ["./packages/types/src"],
"@nextcalc/math-engine": ["./packages/math-engine/dist"],
"@nextcalc/math-engine/parser": ["./packages/math-engine/dist/parser"],
"@nextcalc/math-engine/wasm": ["./packages/math-engine/dist/wasm"],
"@nextcalc/math-engine/units": ["./packages/math-engine/dist/units"],
"@nextcalc/math-engine/symbolic": ["./packages/math-engine/dist/symbolic"],
"@nextcalc/math-engine/matrix": ["./packages/math-engine/dist/matrix"],
"@nextcalc/math-engine/solver": ["./packages/math-engine/dist/solver"],
"@nextcalc/math-engine/stats": ["./packages/math-engine/dist/stats"],
"@nextcalc/math-engine/complex": ["./packages/math-engine/dist/complex"],
"@nextcalc/math-engine/knowledge": ["./packages/math-engine/dist/knowledge"],
"@nextcalc/math-engine/algorithms": ["./packages/math-engine/dist/algorithms"],
"@nextcalc/math-engine/differential": ["./packages/math-engine/dist/differential"],
"@nextcalc/math-engine/problems": ["./packages/math-engine/dist/problems"],
"@nextcalc/math-engine/prover": ["./packages/math-engine/dist/prover"],
"@nextcalc/math-engine/content": ["./packages/math-engine/dist/content"],
"@nextcalc/math-engine/cas": ["./packages/math-engine/dist/cas"],
"@nextcalc/math-engine/calculus": ["./packages/math-engine/dist/calculus"],
"@nextcalc/plot-engine": ["./packages/plot-engine/dist"],
"@nextcalc/database": ["./packages/database/src"]
}
},
"exclude": ["node_modules", "dist", ".next", ".turbo"]
}