mirror of
https://github.com/aleksejs1/obsidian-contact-sync-plugin.git
synced 2026-07-22 12:40:24 +00:00
According to this: https://forum.obsidian.md/t/what-is-the-most-sensible-ecmascript-build-target-for-a-plugin/103193 There is no reason to go lower right now.
24 lines
No EOL
489 B
JSON
24 lines
No EOL
489 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"lib": [
|
|
"es2021",
|
|
"dom"
|
|
],
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "."
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
} |