Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
m1k1o
GitHub Repository: m1k1o/neko
Path: blob/master/client/tsconfig.json
1002 views
1
{
2
"compilerOptions": {
3
"target": "esnext",
4
"module": "esnext",
5
"strict": true,
6
"jsx": "preserve",
7
"importHelpers": true,
8
"moduleResolution": "node",
9
"experimentalDecorators": true,
10
"esModuleInterop": true,
11
"allowSyntheticDefaultImports": true,
12
"sourceMap": true,
13
"skipLibCheck": true,
14
"baseUrl": ".",
15
"types": [
16
"node",
17
"webpack-env"
18
],
19
"paths": {
20
"~/*": [
21
"src/*"
22
],
23
"@/*": [
24
"src/*"
25
]
26
},
27
"lib": [
28
"esnext",
29
"dom",
30
"dom.iterable",
31
"scripthost"
32
],
33
},
34
"include": [
35
"tools/**/*.ts",
36
"src/**/*.ts",
37
"src/**/*.tsx",
38
"src/**/*.vue",
39
],
40
"exclude": [
41
"node_modules"
42
]
43
}
44
45