-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.test.json
More file actions
54 lines (54 loc) · 1.83 KB
/
Copy pathtsconfig.test.json
File metadata and controls
54 lines (54 loc) · 1.83 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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"resolveJsonModule": true,
"typeRoots": [
"node_modules/@types",
"src/aux-server/typings",
"src/aux-vm/typings",
"src/crypto-node/typings",
"src/js-interpreter/typings",
"./typings"
],
"paths": {
"three-legacy-gltf-loader": [
"src/aux-server/aux-web/shared/public/three-legacy-gltf-loader/index.d.ts"
],
"aux-jest-matchers": ["jest/jest-matchers.ts"]
},
"jsx": "react-jsx",
"jsxImportSource": "preact",
"noEmit": true
},
"files": [
"src/aux-server/typings/casual-simulation.three.d.ts",
"src/aux-server/typings/global.d.ts",
"src/aux-server/typings/what3words.d.ts"
],
"references": [
{ "path": "./src/crypto" },
{ "path": "./src/aux-server" },
{ "path": "./src/aux-common" },
{ "path": "./src/aux-components" },
{ "path": "./src/aux-vm" },
{ "path": "./src/aux-vm-client" },
{ "path": "./src/aux-vm-node" },
{ "path": "./src/aux-vm-browser" },
{ "path": "./src/aux-vm-deno" },
{ "path": "./src/aux-records" },
{ "path": "./src/aux-records-aws" },
{ "path": "./src/crypto-browser" },
{ "path": "./src/crypto-node" },
{ "path": "./src/stacktrace" },
{ "path": "./src/tunnel" },
{ "path": "./src/undom" },
{ "path": "./src/fast-json-stable-stringify" },
{ "path": "./src/expect" },
{ "path": "./src/chalk" },
{ "path": "./src/websocket" },
{ "path": "./src/js-interpreter" },
{ "path": "./src/rate-limit-redis" },
{ "path": "./src/aux-websocket" },
{ "path": "./src/aux-websocket-aws" }
]
}