-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.cjs.json
35 lines (32 loc) · 979 Bytes
/
tsconfig.cjs.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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2021",
"module": "CommonJS",
"moduleResolution": "Node",
"composite": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "./build/types",
"outDir": "./build/cjs",
"rootDir": "./src",
"baseUrl": "..",
"paths": {
"@ffweb/core/*": [ "core/src/*" ],
"@ffweb/browser/*": [ "browser/src/*" ],
"@ffweb/graph/*": [ "graph/src/*" ],
"@ffweb/three/*": [ "three/src/*" ],
"@ffweb/lit/*": [ "lit/src/*" ],
}
},
"include": [
"./src/**/*"
],
"references": [
{ "path": "../core/tsconfig.cjs.json" },
{ "path": "../browser/tsconfig.cjs.json" },
{ "path": "../graph/tsconfig.cjs.json" },
{ "path": "../three/tsconfig.cjs.json" },
{ "path": "../lit/tsconfig.cjs.json" }
]
}