felvesthe_Note-Locker/tsconfig.json
Felvesthe 38c5a0e500 Code refactor and new features
* Added settings panel
* Unified mobile / desktop notification max length setting (configurable in settings)
* New option: Lock / Unlock icon in status bar
* New option: Show lock icon next to locked note name

Signed-off-by: Felvesthe <23108389+Felvesthe@users.noreply.github.com>
2025-05-09 15:23:00 +02:00

24 lines
426 B
JSON

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