-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
33 lines (28 loc) · 843 Bytes
/
tsconfig.base.json
File metadata and controls
33 lines (28 loc) · 843 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
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2017",
"lib": ["ES2017", "DOM", "DOM.Iterable"],
"jsx": "react",
/* Modules */
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
/* JavaScript Support - Allow .js and .ts files side by side */
"allowJs": true,
"checkJs": false,
/* Emit - Babel handles transpilation, so we don't emit */
"noEmit": true,
"declaration": false,
/* Interop Constraints */
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking - Start with relaxed settings for gradual migration */
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"skipLibCheck": true
}
}