-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathtsconfig.json
37 lines (37 loc) · 997 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
30
31
32
33
34
35
36
37
{
"bazelOpts": {
"es5Mode": true,
"devmodeTargetOverride": "es2017"
},
"compilerOptions": {
"module": "commonjs",
"target": "es2017",
"diagnostics": false,
"inlineSourceMap": false,
"inlineSources": false,
"sourceMap": true,
"moduleResolution": "node",
"stripInternal": true,
"strictNullChecks": true,
"pretty": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo",
"emitDecoratorMetadata": true,
"noUnusedLocals": true,
"jsx": "react",
"jsxFactory": "createElement",
"plugins": [
{
"name": "tslint-language-service"
}
],
"baseUrl": "./packages",
"lib": ["es2017", "dom", "esnext.asynciterable", "esnext"]
},
"exclude": ["node_modules", "bazel-*", "**/node_modules/*"],
"include": ["peer/**/*", "lighthouse/**/*"]
}