-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.tests.json
More file actions
26 lines (26 loc) · 995 Bytes
/
Copy pathtsconfig.tests.json
File metadata and controls
26 lines (26 loc) · 995 Bytes
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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"noEmit": true,
"lib": ["ES2024", "DOM", "DOM.Iterable"],
"composite": false,
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"jsx": "react-jsx",
"types": ["node", "three"],
"paths": {
"@ecsia/kit": ["./packages/ecsia/src/index.ts"],
"@ecsia/core": ["./packages/core/src/index.ts"],
"@ecsia/schema": ["./packages/schema/src/index.ts"],
"@ecsia/relations": ["./packages/relations/src/index.ts"],
"@ecsia/scheduler": ["./packages/scheduler/src/index.ts"],
"@ecsia/serialization": ["./packages/serialization/src/index.ts"],
"@ecsia/rollback": ["./packages/rollback/src/index.ts"],
"@ecsia/three": ["./packages/three/src/index.ts"],
"@ecsia/react": ["./packages/react/src/index.ts"],
"@ecsia/devtools": ["./packages/devtools/src/index.ts"]
}
},
"include": ["packages/*/test/**/*.ts", "packages/*/test/**/*.tsx"]
}