Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/website/tsconfig.json
1028 views
1
{
2
"compilerOptions": {
3
"target": "es5",
4
"module": "es2015",
5
"moduleResolution": "node",
6
"experimentalDecorators": true,
7
"noImplicitReturns": true,
8
"outDir": "../build-dist/website",
9
"allowSyntheticDefaultImports": true,
10
"sourceMap": false,
11
"skipLibCheck": true,
12
"skipDefaultLibCheck": true,
13
"declarationMap": false,
14
"strict": true,
15
"lib": ["es2019", "dom"]
16
},
17
"include": ["./src/**/*", ".eslintrc.js"]
18
}
19
20