forked from lifinance/widget
-
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) · 772 Bytes
/
Copy pathtsconfig.json
File metadata and controls
23 lines (23 loc) · 772 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": {
// Incremental builds
// NOTE: Enabling incremental builds speeds up `tsc`. Keep in mind though that it does not reliably bust the cache when the `tsconfig.json` file changes.
"incremental": true,
"allowJs": false,
"composite": true,
"forceConsistentCasingInFileNames": true,
"isolatedDeclarations": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"moduleResolution": "Bundler",
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"rewriteRelativeImportExtensions": true,
"target": "ES2020"
},
"exclude": ["**/.*/", "**/build", "**/dist", "node_modules"]
}