core/tsconfig.json

26 lines
643 B
JSON
Raw Normal View History

2025-05-16 06:23:48 +00:00
{
"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": {
2025-05-16 07:30:02 +00:00
"~/*": ["./panel/*"]
2025-06-30 18:25:26 +00:00
},
"typeRoots": ["./panel/types", "./node_modules/@types"]
2025-05-16 06:23:48 +00:00
},
2025-06-30 18:25:26 +00:00
"include": ["panel/**/*.ts", "panel/**/*.tsx", "panel/**/*.d.ts"],
"exclude": ["node_modules"]
2025-05-16 06:23:48 +00:00
}