forked from decentraland/kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
40 lines (40 loc) · 912 Bytes
/
Copy pathtsconfig.json
File metadata and controls
40 lines (40 loc) · 912 Bytes
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
30
31
32
33
34
35
36
37
38
39
40
{
"compilerOptions": {
"module": "commonjs",
"target": "es2018",
"diagnostics": false,
"inlineSourceMap": false,
"inlineSources": false,
"sourceMap": true,
"moduleResolution": "node",
"stripInternal": true,
"strictNullChecks": true,
"pretty": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo",
"emitDecoratorMetadata": true,
"noUnusedLocals": true,
"jsx": "react",
"jsxFactory": "createElement",
"baseUrl": "./packages",
"lib": [
"es2018",
"dom",
"esnext.asynciterable"
],
"types": ["@dcl/posix", "segment-analytics"],
"typeRoots": ["./node_modules"]
},
"exclude": [
"node_modules",
"dist",
"public"
],
"include": [
"src/**/*",
"test/**/*"
]
}