23 lines
613 B
JSON
23 lines
613 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@star-kitten/lib/discord",
|
|
"lib": ["ESNext", "DOM"],
|
|
"typeRoots": ["src/types", "./node_modules/@types"],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@data/*": ["./data/*"],
|
|
"@types/*": ["./types/*"]
|
|
},
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"allowImportingTsExtensions": false
|
|
},
|
|
"include": ["src", "types", "src/jsx/types.d.ts"],
|
|
"exclude": ["node_modules", "dist", "build", "**/*.test.ts"]
|
|
}
|