-
Notifications
You must be signed in to change notification settings - Fork 32
/
tsconfig.json
62 lines (54 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"include": ["src/lib/**/*.ts", "src/packages/**/*.ts", "src/index.ts"],
"files": ["src/index.ts"],
"typeAcquisition": {
"enable": true,
"disableFilenameBasedTypeAcquisition": true
},
"compilerOptions": {
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"exactOptionalPropertyTypes": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": false,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"allowUmdGlobalAccess": false,
"baseUrl": "./src",
"module": "ESNext",
"moduleResolution": "node",
"paths": {
"@common/*": ["lib/common/*", "packages/common/*", "packages/__test__/*"],
"@lib/*": ["lib/*"],
"@rng/*": ["lib/rng/*"],
"@special/*": ["lib/special/*"],
"@trig/*": ["lib/trigonometry/*"],
"@dist/*": ["lib/distributions/*"]
},
"resolveJsonModule": true,
"types": ["node", "jest"],
"typeRoots": ["src/packages/__test__/jest-ext.d.ts", "node_modules/@types"],
"declaration": false,
"outDir": "dist/tsc",
"preserveConstEnums": true,
"stripInternal": true,
"checkJs": true,
"allowSyntheticDefaultImports": false,
"esModuleInterop": false,
"forceConsistentCasingInFileNames": true,
"preserveSymlinks": true,
"lib": ["esnext", "dom"],
"target": "esnext",
"explainFiles": false,
"extendedDiagnostics": true,
"listEmittedFiles": true,
"listFiles": true,
"traceResolution": false,
"composite": false,
"incremental": false
}
}