forked from react-cosmos/react-cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 779 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 779 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
// This config is used in multiple ways:
// 1. Used by code editors. All TS config, aside from build parameters, should
// be placed here.
// 2. Extended by specific package build configs used to generate TS
// declarations. Those configs have an "outDir" defined.
// 3. Used by global check-types command (which runs in CI)
{
"compilerOptions": {
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"moduleResolution": "node",
"newLine": "LF",
"noEmit": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2022",
"module": "ES2022"
},
"exclude": ["node_modules", "cypress"]
}