Skip to content

Commit f282e67

Browse files
committed
Update ts settings to make linter happy
1 parent fe5a7c1 commit f282e67

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

tsconfig.app.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4+
"composite": true,
45
"target": "ES2020",
56
"useDefineForClassFields": true,
67
"lib": ["ES2020", "DOM", "DOM.Iterable"],

tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
/* Linting */
2424
"strict": true,
2525
"noUnusedLocals": true,
26-
"noUnusedParameters": true,
27-
"noFallthrough": true
26+
"noUnusedParameters": true
2827
},
2928
"include": ["src"],
3029
"references": [{ "path": "./tsconfig.node.json" }]

tsconfig.node.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4+
"composite": true,
45
"target": "ES2022",
56
"lib": ["ES2023"],
67
"module": "ESNext",

0 commit comments

Comments
 (0)