mirror of
https://github.com/fbarrca/obsidian-inlineAI.git
synced 2026-07-22 11:50:24 +00:00
19 lines
411 B
JSON
19 lines
411 B
JSON
{
|
|
"compilerOptions": {
|
|
"types": ["node"],
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "public"]
|
|
}
|