Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/replay/tsconfig.json
1028 views
1
{
2
"compilerOptions": {
3
"outDir": "../build/replay",
4
"module": "commonjs",
5
"target": "ES2019",
6
"lib": ["ESNext", "ES2019", "DOM", "DOM.Iterable", "ScriptHost"],
7
"moduleResolution": "node",
8
"strict": false,
9
"importHelpers": true,
10
"experimentalDecorators": true,
11
"noImplicitAny": false,
12
"resolveJsonModule": true,
13
"esModuleInterop": false,
14
"sourceMap": true,
15
"skipDefaultLibCheck": true,
16
"skipLibCheck": true,
17
"composite": true,
18
"baseUrl": ".",
19
"paths": {
20
"~frontend/*": ["frontend/src/*"],
21
"~backend/*": ["backend/*"],
22
"~shared/*": ["shared/*"],
23
"~install/*": ["install/*"]
24
}
25
},
26
"include": [
27
"backend/**/*.ts",
28
"vue.config.ts",
29
"injected-scripts/**/*.ts",
30
"shared/**/*.ts",
31
"frontend/src/constants",
32
"app.ts",
33
"bin.ts",
34
"index.ts",
35
"install/*.ts",
36
".eslintrc.js"
37
],
38
"exclude": ["dist", "node_modules", "**/node_modules"]
39
}
40
41