mirror of
https://github.com/brianpetro/smart-context-obsidian.git
synced 2026-07-22 11:30:25 +00:00
Add ESLint and TypeScript configuration files
This commit is contained in:
parent
8e4be9cfe3
commit
503a1b491d
2 changed files with 18 additions and 0 deletions
3
eslint.config.mjs
Normal file
3
eslint.config.mjs
Normal 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
15
tsconfig.json
Normal 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"
|
||||
]
|
||||
}
|
||||
Loading…
Reference in a new issue