ahmetildirim_obsidian-inscribe/tsconfig.json

32 lines
558 B
JSON
Raw Permalink Normal View History

2025-01-01 20:13:20 +00:00
{
"compilerOptions": {
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"paths": {
"src/*": [
"./src/*"
]
},
2025-01-01 20:13:20 +00:00
"noImplicitAny": true,
"moduleResolution": "bundler",
2025-01-01 20:13:20 +00:00
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7"
],
"jsx": "react",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
2025-01-01 20:13:20 +00:00
},
"include": [
"**/*.ts"
]
}