Skip to content

Commit c939dbe

Browse files
reyamiryukibtc
authored andcommitted
fix build
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent 9dc8056 commit c939dbe

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "./tsconfig",
3-
"exclude": ["example", "lib", "deps"]
3+
"exclude": ["example", "lib", "deps", "node_modules"]
44
}

tsconfig.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99
"esModuleInterop": true,
1010
"forceConsistentCasingInFileNames": true,
1111
"jsx": "react-jsx",
12-
"lib": ["ESNext"],
13-
"module": "ESNext",
12+
"lib": ["ES2022"],
13+
"module": "ES2022",
1414
"moduleResolution": "bundler",
1515
"noEmit": true,
1616
"noFallthroughCasesInSwitch": true,
1717
"noImplicitReturns": true,
1818
"noImplicitUseStrict": false,
1919
"noStrictGenericChecks": false,
2020
"noUncheckedIndexedAccess": true,
21-
"noUnusedLocals": true,
22-
"noUnusedParameters": true,
21+
"noUnusedLocals": false,
22+
"noUnusedParameters": false,
2323
"resolveJsonModule": true,
2424
"resolvePackageJsonImports": false,
2525
"skipLibCheck": true,
2626
"strict": true,
27-
"target": "ESNext",
27+
"target": "ES2022",
2828
"verbatimModuleSyntax": true
2929
}
3030
}

0 commit comments

Comments
 (0)