Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/replay/frontend/tsconfig.json
1028 views
1
{
2
"compilerOptions": {
3
"outDir": "../../build/replay/static",
4
"target": "esnext",
5
"module": "esnext",
6
"moduleResolution": "node",
7
"strict": false,
8
"importHelpers": true,
9
"experimentalDecorators": true,
10
"esModuleInterop": true,
11
"allowSyntheticDefaultImports": true,
12
"noImplicitAny": false,
13
"sourceMap": true,
14
"skipDefaultLibCheck": true,
15
"skipLibCheck": true,
16
"composite": true,
17
"baseUrl": "..",
18
"rootDir": "..",
19
"paths": {
20
"~frontend/*": ["frontend/src/*"],
21
"~shared/*": ["shared/*"]
22
},
23
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
24
},
25
"include": ["**/*.ts", "**/*.vue", "../shared/**/*.ts", "**/*.json", "./.eslintrc.js"],
26
"exclude": ["node_modules", "**/node_modules"]
27
}
28
29