Combine Library, JSX, and Time command #1

Merged
jb merged 3 commits from merge-lib into main 2026-01-02 18:23:46 -05:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit eece9b1257 - Show all commits

View File

@@ -11,7 +11,11 @@
"@/*": ["./src/*"], "@/*": ["./src/*"],
"@data/*": ["./data/*"], "@data/*": ["./data/*"],
"@types/*": ["./types/*"] "@types/*": ["./types/*"]
} },
"noEmit": false,
"declaration": true,
"outDir": "dist",
"allowImportingTsExtensions": false
}, },
"include": ["src", "types", "src/jsx/types.d.ts"], "include": ["src", "types", "src/jsx/types.d.ts"],
"exclude": ["node_modules", "dist", "build", "**/*.test.ts"] "exclude": ["node_modules", "dist", "build", "**/*.test.ts"]

View File

@@ -5,10 +5,12 @@
"jsx": "react-jsx", "jsx": "react-jsx",
"jsxImportSource": "@star-kitten/lib/discord", "jsxImportSource": "@star-kitten/lib/discord",
"paths": { "paths": {
"@*": ["./src/*"] "@*": ["./src/*"],
"@star-kitten/lib/*": ["../lib/src/*"]
}, },
"typeRoots": ["src/types", "./node_modules/@types"] "typeRoots": ["src/types", "./node_modules/@types"]
}, },
"references": [{ "path": "../lib" }],
"include": ["src", "types"], "include": ["src", "types"],
"exclude": ["node_modules", "dist", "build", "**/*.test.ts"] "exclude": ["node_modules", "dist", "build", "**/*.test.ts"]
} }