-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
executable file
·52 lines (52 loc) · 1.03 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
{
"extends": "./node_modules/adonis-preset-ts/tsconfig",
"compilerOptions": {
"rootDir": "./",
"target": "es2022",
"module": "commonjs",
"incremental": true,
"removeComments": false,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"importHelpers": true,
"skipLibCheck": true,
"sourceMap": true,
"resolveJsonModule": true
},
"include": [],
"references": [
{
"path": "./packages/radonis"
},
{
"path": "./packages/radonis-build"
},
{
"path": "./packages/radonis-form"
},
{
"path": "./packages/radonis-hooks"
},
{
"path": "./packages/radonis-hydrate"
},
{
"path": "./packages/radonis-server"
},
{
"path": "./packages/radonis-shared"
},
{
"path": "./packages/radonis-unocss"
},
{
"path": "./packages/radonis-query"
},
{
"path": "./packages/radonis-types"
}
]
}