-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 645 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 645 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
{
"compilerOptions": {
"lib": ["ES2019", "DOM", "DOM.Iterable", "ESNext"],
"target": "ES2015",
"module": "commonjs",
"jsx": "react",
"noUnusedLocals": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"skipLibCheck": true,
"rootDir": ".",
"outDir": "dist",
"declaration": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitReturns": true
},
"include": ["src", "test", "features"]
}