mirror of
https://github.com/alberti42/obsidian-plugins-annotations.git
synced 2026-07-22 10:10:24 +00:00
27 lines
685 B
JSON
27 lines
685 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"outDir": "dist",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext", // or "CommonJS" if you are targeting Node.js
|
|
"target": "ES2020", // Modern target for better browser support
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"strict": true, // Enforces strict type checking options
|
|
"lib": [
|
|
"DOM",
|
|
"ES2020"
|
|
],
|
|
//"jsx": "react-jsx", // Required by React
|
|
},
|
|
|
|
"typeRoots": ["./src/types","./node_modules/@types"],
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
]
|
|
}
|