Files
trezor-suite/tsconfig.json
Daniel Suchý e7d1fb28c2 test cache
2022-08-26 10:51:47 +02:00

49 lines
1.3 KiB
JSON

{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"baseUrl": ".",
"jsx": "preserve",
"module": "esnext",
"moduleResolution": "node",
"removeComments": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "esnext",
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": false,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"types": ["jest", "node"],
"esModuleInterop": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"incremental": true,
"noEmit": false
},
"exclude": [
"**/node_modules",
"**/lib",
"**/libDev",
"**/build",
"**/build-electron",
"**/dist",
"**/coverage",
"**/public",
"**/protobuf-patches",
"**/trezor-common",
"**/jest.config.js"
],
"references": [
{ "path": "suite-common/wallet-types" }
]
}