create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
23 lines (22 loc) • 622 B
JSON
{
"extends": "@tsconfig/node12/tsconfig.json",
"include": ["./src"],
"exclude": ["**/__mocks__/*", "**/__tests__/*"],
"compilerOptions": {
"outDir": "./build",
"module": "commonjs",
"moduleResolution": "node",
"types": [],
"typeRoots": ["./ts-declarations", "node_modules/@types"],
"sourceMap": true,
"declaration": true,
"inlineSources": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictFunctionTypes": true,
"skipLibCheck": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"allowSyntheticDefaultImports": true
}
}