core/tsconfig.json
Untone 952b294345
All checks were successful
Deploy on push / deploy (push) Successful in 6s
0.5.8-panel-upgrade-community-crud-fix
2025-06-30 21:25:26 +03:00

26 lines
643 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"allowJs": true,
"strict": true,
"noEmit": true,
"types": [],
"resolveJsonModule": true,
"skipLibCheck": true,
"isolatedModules": true,
"lib": ["DOM", "ESNext"],
"paths": {
"~/*": ["./panel/*"]
},
"typeRoots": ["./panel/types", "./node_modules/@types"]
},
"include": ["panel/**/*.ts", "panel/**/*.tsx", "panel/**/*.d.ts"],
"exclude": ["node_modules"]
}