redux-app-examples
Version:
Examples of redux-app with Angular and React.
42 lines (34 loc) • 1.15 kB
JSON
{
"compileOnSave": true,
"compilerOptions": {
// --- input --- //
"jsx": "react",
// --- output --- //
"declaration": false,
"outDir": "./dist",
"sourceMap": true,
"target": "es5",
"module": "commonjs",
"removeComments": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// --- module resolution --- //
"typeRoots" : ["./node_modules/@types","./src/@types"],
"moduleResolution": "node",
"baseUrl": ".",
// --- validation options --- //
"alwaysStrict": true,
"allowSyntheticDefaultImports": false,
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"lib": ["dom", "es2017"],
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"skipLibCheck": true,
"strictNullChecks": false
}
}