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