17 lines
433 B
JSON
17 lines
433 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@star-kitten/discord",
|
|
"paths": {
|
|
"@*": ["./src/*"],
|
|
"@types": ["./types/*"]
|
|
},
|
|
"typeRoots": ["src/types", "./node_modules/@types"],
|
|
"types": []
|
|
},
|
|
"include": ["src", "types", "src/jsx/types.d.ts"],
|
|
"exclude": ["node_modules", "dist", "build", "**/*.test.ts"]
|
|
}
|