mirror of
https://github.com/gtritchie/bulk-properties.git
synced 2026-07-22 06:08:37 +00:00
All current Obsidian platforms (Electron desktop, iOS 16+ WKWebView, Android auto-updating WebView) support ES2022. Aligns both tsconfig and esbuild targets together.
28 lines
570 B
JSON
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"
|
|
]
|
|
}
|