-
Notifications
You must be signed in to change notification settings - Fork 31
/
tsconfig.json
49 lines (49 loc) · 1.38 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"downlevelIteration": true,
"lib": ["es6", "dom", "es7", "esnext"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "./",
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"esModuleInterop": true,
"strictBindCallApply": true,
"allowUnusedLabels": false,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"forceConsistentCasingInFileNames": true,
"paths": {
"src/*": ["src/*"],
"test/*": ["test/*"],
"schemas/*": ["schemas/*"],
"scripts/*": ["scripts/*"]
},
"allowSyntheticDefaultImports": true,
"exactOptionalPropertyTypes": false,
"strictFunctionTypes": false,
"strictPropertyInitialization": false,
"useUnknownInCatchVariables": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitOverride": false,
"noImplicitThis": false,
"noUncheckedIndexedAccess": false,
"noUnusedParameters": false,
"plugins": [
{
"name": "typescript-plugin-css-modules",
"options": { "classnameTransform": "camelCase", "namedExports": false }
}
]
},
"include": ["src/**/*.ts", "src/**/*.tsx", "scripts/**/*.ts"],
"exclude": ["node_modules/cypress"]
}