-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
34 lines (34 loc) · 979 Bytes
/
tsconfig.json
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
34
{
"compilerOptions": {
"allowJs": true,
"module": "CommonJS",
"target": "ESNext",
"lib": ["esnext", "dom", "dom.iterable"],
"sourceMap": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"importHelpers": true,
"strictNullChecks": true,
"ignoreDeprecations": "5.0",
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./src/",
"typeRoots": ["./node_modules", "src/common/typedefs"],
"types": ["@types/chrome", "@types/node", "@types/jest"],
"strictPropertyInitialization": true
},
"include": ["src"],
"exclude": []
}