{ "compilerOptions": { // Enable latest features "lib": ["ESNext"], "target": "ESNext", "module": "ESNext", "moduleDetection": "force", "jsx": "react-jsx", "jsxImportSource": "@star-kitten/discord", "allowJs": true, // Bundler mode "moduleResolution": "bundler", "allowImportingTsExtensions": true, "verbatimModuleSyntax": true, "noEmit": true, // Best practices "strict": false, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false, // Paths "paths": { "@*": ["./src/*"], "@types": ["./types/*"] }, "experimentalDecorators": true, "emitDecoratorMetadata": true, "typeRoots": ["src/types", "./node_modules/@types"] }, "include": ["src", "types", "src/jsx/types.d.ts"], "exclude": ["node_modules", "dist", "build", "**/*.test.ts"] }