sozsoft-platform/ui/tsconfig.json

27 lines
688 B
JSON
Raw Normal View History

2026-02-24 20:44:16 +00:00
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
2026-05-06 19:07:30 +00:00
"ignoreDeprecations": "6.0",
2026-02-24 20:44:16 +00:00
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": false,
"module": "ESNext",
2026-05-06 19:07:30 +00:00
"moduleResolution": "Bundler",
2026-02-24 20:44:16 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src", "index.d.ts"],
"exclude": ["node_modules"],
"references": [{ "path": "./tsconfig.node.json" }]
}