-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 901 Bytes
/
Copy pathtsconfig.json
File metadata and controls
31 lines (31 loc) · 901 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
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
/*
Default value `false` was changed because:
- It breaks `identity-obj-proxy` work
https://github.com/keyz/identity-obj-proxy/issues/9#issuecomment-439625933
*/
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
/*
Default value `react` was changed because:
- React 17+ is used, which doesn't require React to be in scope
- TypeScript doesn't throw errors in this case
*/
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "commonjs",
"moduleResolution": "Node",
"resolveJsonModule": true,
"strict": true,
"target": "ES5",
"noEmitOnError": true,
"sourceMap": true,
"skipLibCheck": true
},
"exclude": ["node_modules"]
}