JSX component support and time command

This commit is contained in:
JB
2026-01-02 16:08:20 -05:00
parent eece9b1257
commit bba8c4f6f1
71 changed files with 1214 additions and 429 deletions

View File

@@ -2,7 +2,9 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"strict": true,
"strict": false,
"noImplicitAny": false,
"skipLibCheck": true,
"jsx": "react-jsx",
"jsxImportSource": "@star-kitten/lib/discord",
"lib": ["ESNext", "DOM"],
@@ -12,11 +14,14 @@
"@data/*": ["./data/*"],
"@types/*": ["./types/*"]
},
"emitDeclarationOnly": true,
"noEmit": false,
"noEmitOnError": false,
"declaration": true,
"outDir": "dist",
"allowImportingTsExtensions": false
"outDir": "dist/types",
"rootDir": "src",
"allowImportingTsExtensions": true
},
"include": ["src", "types", "src/jsx/types.d.ts"],
"exclude": ["node_modules", "dist", "build", "**/*.test.ts"]
"exclude": ["node_modules", "build", "**/*.test.ts"]
}