Add ESLint and TypeScript configuration files

This commit is contained in:
Brian Joseph Petro 2026-05-14 15:04:34 -04:00
parent 8e4be9cfe3
commit 503a1b491d
2 changed files with 18 additions and 0 deletions

3
eslint.config.mjs Normal file
View file

@ -0,0 +1,3 @@
import shared_eslint_config from "../obsidian-smart-env/eslint.base.mjs";
export default shared_eslint_config;

15
tsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2022"
},
"include": [
"src/**/*.js",
"src/**/*.ts",
"manifest.json"
]
}