forked from LedgerHQ/ledger-live-common
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 756 Bytes
/
tsconfig.json
File metadata and controls
23 lines (23 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"strict": true,
"noImplicitAny": false,
"noImplicitThis": false,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"downlevelIteration": true,
"rootDir": ".",
"outDir": "lib", // if out path for a file is same as its src path, nothing will be emitted
"resolveJsonModule": true,
"esModuleInterop": true,
"jsx": "react",
"lib": ["es2020", "dom"],
"composite": true // required on the dependency project for references to work
},
"files": [
// by whitelisting the files to include, TS won't automatically
"package.json" // include all source below root, which is the default.
]
}