24 lines
547 B
JSON
24 lines
547 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": false,
|
|
"jsx": "react-native",
|
|
"lib": ["es6"],
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"strictPropertyInitialization": false,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"*" : ["typings/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "typings"]
|
|
}
|