forked from counterfactual/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
29 lines (29 loc) · 842 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"compilerOptions": {
"allowJs": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noLib": false,
"removeComments": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["es2015", "es2017", "dom", "esnext.asynciterable"],
"target": "es5",
"module": "commonjs",
"sourceMap": true,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@counterfactual/typescript-typings/types"
],
// @types/mocha has a duplicate conflict, this is the suggested temp fix.
"skipLibCheck": true,
"strict": true
}
}