29 lines
671 B
JSON
29 lines
671 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/*"]
|
|
}
|
|
},
|
|
"files": [
|
|
"node_modules/typescript/lib/lib.es6.d.ts"
|
|
],
|
|
"exclude": ["node_modules", "typings"]
|
|
}
|