mirror of
https://github.com/mprojectscode/obsidian-safe-js-plugin.git
synced 2026-07-22 06:55:38 +00:00
30 lines
819 B
JSON
30 lines
819 B
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@lemons_dev/obsidian-safe-js-api": ["./packages/safe-js-api/src"],
|
|
"@lemons_dev/obsidian-safe-js-api/internal": ["./packages/safe-js-api/src/internal"],
|
|
"packages/*": ["./packages/*"],
|
|
"tests/*": ["./tests/*"]
|
|
},
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"sourceMap": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": ["bun"]
|
|
},
|
|
"include": ["packages/obsidian/**/*.ts", "test/**/*.ts"]
|
|
}
|