27 lines
663 B
JSON
27 lines
663 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": false,
|
|
"jsx": "react-native",
|
|
"lib": ["es6"],
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"strictPropertyInitialization": false,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"*" : ["typings/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "zeus_modules", "android", "ios"],
|
|
"include": ["**/*.ts", "**/*.tsx"]
|
|
}
|