-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
executable file
·77 lines (75 loc) · 1.74 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"compileOnSave": false,
"compilerOptions": {
"strict": false,
"allowJs": true,
"noImplicitAny": false,
"noFallthroughCasesInSwitch": true,
"downlevelIteration": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"forceConsistentCasingInFileNames": true,
"noErrorTruncation": true,
"jsx": "preserve",
"target": "es2015",
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"types": [
"@cloudflare/workers-types",
"@types/jest",
"@types/service-worker-mock",
"@types/chroma-js",
"@types/file-saver",
"@types/lodash",
"@types/mathjs",
"@types/node",
"@types/object-hash",
"@types/react",
"@types/react-color",
"@types/react-dom",
"@types/react-select",
"@types/react-splitter-layout",
"@types/recharts",
"@types/semver",
"@types/three",
"@types/d3",
"@types/plotly.js",
"@types/react-tabs",
"@types/styled-components",
"@types/zip.js"
],
"lib": [
"dom",
"esnext.asynciterable",
"es2015",
"es2016",
"es2017.object",
"es2019",
"webworker"
],
"skipLibCheck": true,
"resolveJsonModule": true,
"noEmit": true,
"isolatedModules": true,
"experimentalDecorators": true
},
"include": [
"src/types/types.d.ts",
"src",
"src/.ts",
"types/bvh.d.ts",
"types/three-mesh-bvh.d.ts",
"types/global.d.ts",
"types/csg.d.ts"
],
"exclude": [
"node_modules/**",
"src/compute/raytracer/lib",
"src/as/assembly"
]
}