diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000..942f214 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,3 @@ +import shared_eslint_config from "../obsidian-smart-env/eslint.base.mjs"; + +export default shared_eslint_config; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..acbd615 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "noEmit": true, + "module": "ESNext", + "moduleResolution": "Bundler", + "target": "ES2022" + }, + "include": [ + "src/**/*.js", + "src/**/*.ts", + "manifest.json" + ] +} \ No newline at end of file