Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quantum-kittens
GitHub Repository: quantum-kittens/platypus
Path: blob/main/frontend/vue/tsconfig.json
3359 views
1
{
2
"compilerOptions": {
3
"target": "es2018",
4
"module": "esnext",
5
"strict": true,
6
"jsx": "preserve",
7
"importHelpers": true,
8
"moduleResolution": "node",
9
"experimentalDecorators": true,
10
"skipLibCheck": true,
11
"esModuleInterop": true,
12
"allowSyntheticDefaultImports": true,
13
"sourceMap": true,
14
"baseUrl": ".",
15
"types": [
16
"node",
17
"webpack-env",
18
"../types"
19
],
20
"lib": [
21
"esnext",
22
"dom",
23
"dom.iterable",
24
"scripthost"
25
]
26
},
27
"include": [
28
"**/*.ts",
29
"**/*.tsx",
30
"**/*.vue"
31
],
32
"exclude": [
33
"node_modules"
34
]
35
}
36
37