core/tsconfig.json
Untone 82111ed0f6
All checks were successful
Deploy on push / deploy (push) Successful in 7s
Squashed new RBAC
2025-07-02 22:30:21 +03:00

26 lines
655 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", "env.d.ts"],
"exclude": ["node_modules"]
}