Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/tsconfig.json
7382 views
1
{
2
"compilerOptions": {
3
"target": "es2015",
4
"module": "es2020",
5
"jsx": "react",
6
"moduleResolution": "node",
7
"lib": [
8
"es2015",
9
"dom"
10
],
11
"strict": true,
12
"noEmit": true,
13
"sourceMap": true,
14
"noImplicitReturns": true,
15
"skipLibCheck": true,
16
"skipDefaultLibCheck": true,
17
"esModuleInterop": true,
18
"allowSyntheticDefaultImports": true,
19
"baseUrl": ".",
20
"importsNotUsedAsValues": "preserve",
21
"paths": {
22
"@/*": [
23
"./resources/scripts/*"
24
],
25
"@definitions/*": [
26
"./resources/scripts/api/definitions/*"
27
],
28
"@feature/*": [
29
"./resources/scripts/components/server/features/*"
30
]
31
},
32
"plugins": [
33
{
34
"name": "typescript-plugin-tw-template"
35
}
36
],
37
"typeRoots": [
38
"node_modules/@types"
39
]
40
},
41
"include": [
42
"./resources/scripts/**/*"
43
],
44
"exclude": [
45
"/node_modules/"
46
]
47
}
48
49