-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathtsconfig.json
More file actions
17 lines (17 loc) · 817 Bytes
/
tsconfig.json
File metadata and controls
17 lines (17 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
// Only values not in expo/tsconfig.base
"emitDecoratorMetadata": true,
"experimentalDecorators": true, // needed for reflect-metada/typeorm
"skipLibCheck": true,
"strict": true /* Enable all strict type-checking options. */,
"baseUrl": "./" /* Base directory to resolve non-absolute module names. */,
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"removeComments": true /* Removes all comments. */,
"strictPropertyInitialization": false /* Disables the need to initialize every property */,
"allowJs": true,
"isolatedModules": true,
"resolveJsonModule": true /* Enable importing .json files */
}
}