alberti42_obsidian-import-a.../tsconfig.json
2024-05-10 20:49:07 +02:00

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"
]
}