forked from LedgerHQ/ledger-live-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 699 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"compilerOptions": {
"composite": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"module": "commonjs",
"jsx": "react",
"lib": ["es6", "dom"],
"moduleResolution": "node",
"resolveJsonModule": true,
"strict": true,
"target": "esnext",
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
},
"skipLibCheck": true,
"sourceMap": true,
"outDir": "tests/tests-out",
"rootDir": "./src"
},
"include": ["tests", "src/**/*"],
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js",
"./scripts",
"./lib",
]
}