mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-20 06:08:39 +01:00
* feat(suite-native): Implement test utils * chore(suite-native): Deduplicate deps * feat(suite-native): Implement time switch test * refactor(suite-native): Rename test * fix(suite-native): Circular deps * refactor(suite-native): Test ids * fix(suite-native): Remove state from test utils * refactor(suite-native): Remove scripts * refactor(suite-native): Move tests store * refactor(suite-native): Use root config
47 lines
1.2 KiB
JSON
47 lines
1.2 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"
|
|
]
|
|
}
|