mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-20 22:28:30 +01:00
49 lines
1.3 KiB
JSON
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" }
|
|
]
|
|
}
|