mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-20 14:18:16 +01:00
26 lines
510 B
JSON
26 lines
510 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
|
|
"composite": false,
|
|
"incremental": false,
|
|
"declarationMap": true
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/lib",
|
|
"**/libDev",
|
|
"**/build",
|
|
"**/build-electron",
|
|
"**/dist",
|
|
"**/coverage",
|
|
"**/public",
|
|
"**/tests",
|
|
"**/__tests__",
|
|
"**/__mocks__/**",
|
|
"**/*.test.ts"
|
|
]
|
|
}
|