animiassumenda
Version:
Blox live, desktop app for managing staking accounts
44 lines (43 loc) • 1.01 kB
JSON
{
"compilerOptions": {
"target": "ES2018",
"module": "CommonJS",
"lib": ["dom", "esnext"],
"declaration": true,
"declarationMap": true,
"jsx": "react",
"strict": false,
// "pretty": true,
"baseUrl": "./app",
"sourceMap": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
/* Module Resolution Options */
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"allowJs": true,
"outDir": "$$ts-jest$$",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"typeRoots": ["./types/*.d.ts"],
"paths": {
"~app/*": ["./*"],
}
},
"include": ["./types/*.d.ts"],
"exclude": [
"test",
"release",
"app/main.prod.js",
"app/renderer.prod.js",
"app/dist",
"dll",
"node_modules"
]
}