2020-05-08 10:05:34 +07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-02-08 02:22:15 -08:00
|
|
|
"target": "ES2022",
|
2026-03-16 01:52:34 +01:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
2020-05-08 10:05:34 +07:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"lib": [
|
2024-02-08 02:22:15 -08:00
|
|
|
"ES2023"
|
2020-05-08 10:05:34 +07:00
|
|
|
],
|
2026-03-16 01:52:34 +01:00
|
|
|
"noEmit": true,
|
2020-05-08 10:05:34 +07:00
|
|
|
"strict": true,
|
|
|
|
|
"pretty": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2026-03-16 01:52:34 +01:00
|
|
|
"esModuleInterop": true
|
2020-05-08 10:05:34 +07:00
|
|
|
}
|
|
|
|
|
}
|