forked from Stuyk/altv-athena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
63 lines (63 loc) · 1.94 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
56
57
58
59
60
61
62
63
{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"@AthenaServer/*": ["core/server/*"],
"@AthenaClient/*": ["core/client/*"],
"@AthenaShared/*": ["core/shared/*"],
"@AthenaPlugins/*": ["core/plugins/*"],
"@plugins/*": ["core/plugins/*"],
"@utility/*": ["../src-webviews/src/utility/*"],
"@components/*": ["../src-webviews/src/components/*"],
"@ViewComponents/*": ["../src-webviews/src/components/*"],
"@ViewUtility/*": ["../src-webviews/src/utility/*"]
},
"typeRoots": ["./node_modules/@types", "./node_modules/@altv"],
"removeComments": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"allowJs": true,
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"composite": false,
"forceConsistentCasingInFileNames": true,
"strict": false,
"module": "AMD",
"target": "ES2022",
"outDir": "athena-cache",
"skipLibCheck": true,
"esModuleInterop": true,
"declaration": true,
"emitDeclarationOnly": true,
"outFile": "typedefs.ts"
},
"include": [
"src/**/*.ts",
"src-webviews/**/*.ts",
"src-webviews/**/*.d.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/core/plugins/**/webview/**.ts",
"src/core/plugins/**/webview/**.vue",
"src/core/plugins/**/components/**.vue"
],
"exclude": [
"resources",
"scripts",
"altv-athena-cache",
"athena-cache",
"node_modules",
"cache",
"crashdumps",
"data",
"doc",
"modules",
"screenshots"
]
}