alberti42_obsidian-import-a.../tsconfig.json

28 lines
685 B
JSON
Raw Permalink Normal View History

2024-04-29 20:03:06 +00:00
{
"compilerOptions": {
2024-05-04 20:08:53 +00:00
"baseUrl": "src",
"outDir": "dist",
2024-04-29 20:03:06 +00:00
"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"
2024-04-30 08:16:34 +00:00
],
//"jsx": "react-jsx", // Required by React
2024-04-29 20:03:06 +00:00
},
2024-05-10 18:49:07 +00:00
"typeRoots": ["./src/types","./node_modules/@types"],
2024-04-29 20:03:06 +00:00
"include": [
2024-05-04 20:08:53 +00:00
"./src/**/*.ts"
2024-04-29 20:03:06 +00:00
]
}