mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-25 00:27:12 +01:00
* chore(repo): config cleanups and improvements (TS, Nx...) * fix connect e2e * chore: add eslin cache file to nx cache * chore: add stylelint cache file to nx * chore: add ts-node config for to base.tsconfig.json
30 lines
641 B
JSON
30 lines
641 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es6",
|
|
|
|
"composite": false,
|
|
"incremental": false,
|
|
"declarationMap": true,
|
|
"noEmit": false,
|
|
"emitDeclarationOnly": false
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/lib",
|
|
"**/libDev",
|
|
"**/build",
|
|
"**/build-electron",
|
|
"**/dist",
|
|
"**/coverage",
|
|
"**/public",
|
|
"**/tests",
|
|
"**/__tests__",
|
|
"**/__fixtures__",
|
|
"**/__mocks__/**",
|
|
"**/*.test.ts"
|
|
]
|
|
}
|