diff options
| author | Yuval Adam <_@yuv.al> | 2025-03-07 21:28:53 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-03-07 21:28:53 +0100 |
| commit | d7ca848b6116fa3b5061c302eb0882696e9976ac (patch) | |
| tree | a281528a391c10b388ed252403c589d625294471 /tsconfig.app.json | |
| parent | d13a034403e8137e86cf4d300de5ddf60c2597ad (diff) | |
Fix numbers i nchart
Diffstat (limited to 'tsconfig.app.json')
| -rw-r--r-- | tsconfig.app.json | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/tsconfig.app.json b/tsconfig.app.json index 54d2c7b..3e8e9c9 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -4,10 +4,13 @@ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "target": "ES2020", "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], + "lib": [ + "ES2020", + "DOM", + "DOM.Iterable" + ], "module": "ESNext", "skipLibCheck": true, - /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, @@ -15,7 +18,6 @@ "moduleDetection": "force", "noEmit": true, "jsx": "react-jsx", - /* Linting */ "strict": true, "noUnusedLocals": true, @@ -23,5 +25,7 @@ "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true }, - "include": ["src"] -} + "include": [ + "src" + ] +}
\ No newline at end of file |
