forked from looker-open-source/sdk-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.common.json
More file actions
28 lines (28 loc) · 754 Bytes
/
tsconfig.common.json
File metadata and controls
28 lines (28 loc) · 754 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
{
"compilerOptions": {
"lib": ["ES2019", "dom", "dom.iterable"],
"module": "commonjs",
"target": "ES2019",
"jsx": "react",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "node",
"removeComments": true,
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"preserveConstEnums": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true
},
"exclude": ["lib", "node_modules"],
"include": ["*.css"]
}