mirror of
https://github.com/gavvvr/obsidian-timecodes-plugin.git
synced 2026-07-22 12:00:24 +00:00
23 lines
398 B
JSON
23 lines
398 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"target": "ES6",
|
|
"noImplicitAny": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
],
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": ["e2e/"],
|
|
}
|