mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-19 16:22:25 +01:00
32 lines
696 B
JSON
32 lines
696 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "ES2022",
|
|
"importHelpers": true,
|
|
|
|
"composite": false,
|
|
"incremental": false,
|
|
"declarationMap": true,
|
|
"noEmit": false,
|
|
"emitDeclarationOnly": false
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/lib",
|
|
"**/libESM",
|
|
"**/libDev",
|
|
"**/build",
|
|
"**/build-electron",
|
|
"**/dist",
|
|
"**/coverage",
|
|
"**/public",
|
|
"**/tests",
|
|
"**/__tests__",
|
|
"**/__fixtures__",
|
|
"**/__mocks__/**",
|
|
"**/*.test.ts"
|
|
]
|
|
}
|