Files
star-kitten/packages/lib/tsconfig.json

28 lines
757 B
JSON

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