This repository was archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
54 lines (54 loc) · 1.39 KB
/
tsconfig.json
File metadata and controls
54 lines (54 loc) · 1.39 KB
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
50
51
52
53
54
{
"compilerOptions": {
"allowJs": true,
"allowUnreachableCode": false,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"checkJs": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es6"],
"module": "commonjs",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {
"@flautoreview": ["src/index.ts"],
"@flautoreview/*": ["src/*"],
"@flex-development/grease": [
"node_modules/@flex-development/grease/cjs/index"
],
"@flex-development/grease/*": [
"node_modules/@flex-development/grease/cjs/*"
],
"@tests/fixtures/*": ["__tests__/__fixtures__/*"],
"@tests/*": ["__tests__/*"]
},
"preserveConstEnums": true,
"pretty": true,
"resolveJsonModule": true,
"rootDir": "./",
"sourceMap": false,
"strictPropertyInitialization": false,
"suppressImplicitAnyIndexErrors": true,
"strict": true,
"target": "es6"
},
"exclude": ["**/build", "**/node_modules"],
"files": ["typings/jest.d.ts"],
"include": [
"__mocks__",
"__tests__",
"scripts",
"src",
"typings",
"*.js",
"*.ts"
]
}