-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
43 lines (43 loc) · 949 Bytes
/
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
{
"compilerOptions": {
"incremental": true,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": [
"ES2022"
],
"rootDirs": [
"src/"
],
"outDir": "dist/",
"allowJs": true,
"checkJs": true,
"declaration": false,
"noEmit": false,
"isolatedModules": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"removeComments": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"node_modules",
"dist"
],
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.app.json"
}
]
}