-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
55 lines (55 loc) · 1.53 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
53
54
55
{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"@Server/*": ["main/server/*"],
"@Client/*": ["main/client/*"],
"@Shared/*": ["main/shared/*"],
"@Plugins/*": ["plugins/*"],
"@Composables/*": ["../webview/composables/*"],
"@Components/*": ["../webview/components/*"]
},
"typeRoots": ["./node_modules/@types", "./node_modules/@altv"],
"removeComments": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"allowJs": true,
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "NodeNext",
"allowSyntheticDefaultImports": true,
"composite": false,
"forceConsistentCasingInFileNames": true,
"strict": false,
"module": "NodeNext",
"target": "ES2022",
"outDir": "athena-cache",
"skipLibCheck": true,
"esModuleInterop": true,
"declaration": true,
"emitDeclarationOnly": false
},
"include": [
"src/**/*.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/scratchpad/example.pad"
],
"exclude": [
"resources",
"scripts",
"altv-athena-cache",
"athena-cache",
"node_modules",
"cache",
"crashdumps",
"data",
"doc",
"modules",
"screenshots"
]
}