forked from wahello/peerio-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 881 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
{
"compilerOptions": {
"experimentalDecorators": true,
"jsx": "react",
"allowJs": true,
"baseUrl": "./src",
// outDir is declared even if it's unused to avoid a class of mixed-js errors
"outDir": "./build",
"target": "esnext",
"noImplicitThis": true,
"moduleResolution": "node",
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
"skipLibCheck": true,
"strictNullChecks": false, // TODO: enable (default enabled under `strict`, so just remove this line)
"paths": {
// path mappings are mirrored in the jest config in package.json. if you
// change them here, update them there as well!
"~/*": ["./*"]
}
},
"include": ["app/**/*.ts", "app/**/*.tsx"]
}