forked from tableau/query-graphs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfigbase.json
More file actions
27 lines (27 loc) · 815 Bytes
/
tsconfigbase.json
File metadata and controls
27 lines (27 loc) · 815 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
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es5",
"module": "es6",
"lib": ["dom", "ES6"],
"allowJs": false,
"alwaysStrict": true,
"declaration": true,
"declarationMap": true,
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"preserveWatchOutput": true,
}
}