forked from Ivasoft/mattermost-mobile
67 lines
2.2 KiB
JSON
67 lines
2.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"target": "esnext",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"noEmit": false,
|
|
"strict": true,
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"sourceMap": false,
|
|
"rootDir": "./",
|
|
"outDir": "./",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": false,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": false,
|
|
"downlevelIteration": true,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@assets/*": ["dist/assets/*"],
|
|
"@components/*": ["app/components/*"],
|
|
"@constants": ["app/constants/index"],
|
|
"@constants/*": ["app/constants/*"],
|
|
"@i18n": ["app/i18n/index"],
|
|
"@init/*": ["app/init/*"],
|
|
"@notifications": ["app/notifications/index"],
|
|
"@screens/*": ["app/screens/*"],
|
|
"@selectors/*": ["app/selectors/*"],
|
|
"@share/*": ["share_extension/*"],
|
|
"@store": ["app/store/index"],
|
|
"@store/*": ["app/store/*"],
|
|
"@typings/*": ["types/*"],
|
|
"@telemetry/*": ["/app/telemetry/*"],
|
|
"@utils/*": ["app/utils/*"],
|
|
"@websocket": ["app/client/websocket"],
|
|
"*": ["./*", "node_modules/*"],
|
|
"react-native-redash/lib/module/v1": [
|
|
"./node_modules/react-native-redash/lib/typescript/v1/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"include": ["app/**/*", "share_extensionn/**/*", "test/**/*", "detox/**/*", "types/**/*"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js",
|
|
],
|
|
}
|