forked from stripe-archive/flow-to-typescript-codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (38 loc) · 998 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
35
36
37
38
{
"compilerOptions": {
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "react",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"lib": ["dom","dom.iterable", "esnext"],
"resolveJsonModule": true,
"strict": true,
"rootDir": "./src",
"types": [
"jest",
"node"
],
"outDir": "./dist",
"target": "es2019",
"module": "commonjs",
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
},
"include": ["src/**/*"],
"exclude": [
"src/test/test-files/*",
"src/test/regression/*",
"src/fix/auto-import/__test__/export.ts",
"src/fix/auto-import/__test__/needs-imports.ts",
"src/fix/fix-type-exports/__test__/test-input.ts",
"src/fix/suppressions/__test__/test-input.ts"
],
}