devonthesofa_obsidian-note-.../tsconfig.json

33 lines
823 B
JSON
Raw Normal View History

2025-04-03 13:49:10 +00:00
{
2025-05-25 11:24:28 +00:00
"compilerOptions": {
"baseUrl": ".",
2025-07-15 15:30:17 +00:00
"paths": {
"@/components/*": ["./components/*"],
"@/constants/*": ["./constants/*"],
"@/contexts/*": ["./contexts/*"],
"@/core/*": ["./core/*"],
"@/hooks/*": ["./hooks/*"],
"@/integrations/*": ["./integrations/*"],
"@/styles/*": ["./styles/*"],
"@/types/*": ["./types/*"],
2025-07-19 16:30:54 +00:00
"@/utils/*": ["./utils/*"],
2025-07-15 15:30:17 +00:00
"@/views/*": ["./views/*"]
},
2025-05-25 11:24:28 +00:00
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"lib": ["DOM", "ES5", "ES6", "ES7"],
"jsx": "react-jsx",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
2025-05-25 11:24:28 +00:00
},
"include": ["**/*.ts", "**/*.tsx"]
2025-04-03 13:49:10 +00:00
}