mirror of
https://github.com/gavvvr/obsidian-timecodes-plugin.git
synced 2026-07-22 05:38:08 +00:00
30 lines
583 B
JSON
30 lines
583 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"module": "ESNext",
|
||
|
|
"target": "es2022",
|
||
|
|
"lib": [
|
||
|
|
"es2022",
|
||
|
|
"dom"
|
||
|
|
],
|
||
|
|
"types": [
|
||
|
|
"node",
|
||
|
|
"@wdio/globals/types",
|
||
|
|
"expect-webdriverio",
|
||
|
|
"@wdio/mocha-framework"
|
||
|
|
],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"**/*.ts",
|
||
|
|
],
|
||
|
|
}
|