groldsf_obsidian_check_plugin/tsconfig.json

31 lines
856 B
JSON
Raw Normal View History

2025-02-01 00:53:06 +00:00
{
"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"
2025-02-18 17:50:31 +00:00
],
"esModuleInterop": true,
// "rootDir": "src", // Указываем, где исходный код
// "outDir": "dist", // Куда компилировать
"resolveJsonModule": true // Поддержка импорта JSON файлов
2025-02-01 00:53:06 +00:00
},
"include": [
2025-02-18 17:50:31 +00:00
"**/*.ts",
"src/**/*.ts", // Включаем только исходники из папки src
"__tests__/**/*.ts" // Включаем тесты из папки __tests__
2025-02-01 00:53:06 +00:00
]
}