Files
obsidian-tannersearch/tsconfig.json
Simon Cambier e949f0916a Escape HTML
Instead of trying to do some smart (and unsecure) stuff, just display the raw note contents as is
2022-04-15 17:16:37 +02:00

23 lines
389 B
JSON

{
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"lib": [
"DOM",
"ES2021"
]
},
"include": [
"**/*.ts"
]
}