gtritchie_bulk-properties/tsconfig.json
Gary Ritchie 358a3d1eb4
Update ES target from ES6/ES2018 to ES2022
All current Obsidian platforms (Electron desktop, iOS 16+ WKWebView,
Android auto-updating WebView) support ES2022. Aligns both tsconfig
and esbuild targets together.
2026-03-27 09:03:18 -06:00

28 lines
570 B
JSON

{
"compilerOptions": {
"baseUrl": "src",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES2022",
"allowJs": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"importHelpers": true,
"noUncheckedIndexedAccess": true,
"isolatedModules": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"allowSyntheticDefaultImports": true,
"useUnknownInCatchVariables": true,
"lib": [
"DOM",
"ES2022"
]
},
"include": [
"src/**/*.ts"
]
}