{ "include": ["packages", "test", "*.js", "scripts", "eslint.config.mjs"], "exclude": ["node_modules"], "compilerOptions": { "target": "es2022", "module": "NodeNext", // "lib": [], "allowJs": true, "incremental": true, "checkJs": true, // "jsx": "preserve", // "declaration": true, // "declarationMap": true, // "sourceMap": true, // "outFile": "./", // "outDir": "./", // "rootDir": "./", // "composite": true, "removeComments": true, "noEmit": true, "skipDefaultLibCheck": true, "skipLibCheck": true, // "importHelpers": true, // "downlevelIteration": true, // "isolatedModules": true, "pretty": true, "strict": true, "alwaysStrict": true, "noImplicitAny": true, "noImplicitThis": true, "noImplicitReturns": true, "noUnusedLocals": true, "noUnusedParameters": true, "allowUnreachableCode": false, "allowUnusedLabels": false, "allowUmdGlobalAccess": false, "strictNullChecks": true, "strictPropertyInitialization": true, "strictFunctionTypes": true, "strictBindCallApply": true, "noFallthroughCasesInSwitch": true, "forceConsistentCasingInFileNames": true, "moduleResolution": "NodeNext", // "baseUrl": "src" , // "paths": {}, // "rootDirs": [], "typeRoots": ["./node_modules/@types"], "types": [], "allowSyntheticDefaultImports": true, "esModuleInterop": true, "resolveJsonModule": true, // "preserveSymlinks": true, // "sourceRoot": "./src" , // "mapRoot": "maps" , // "sourceMap": true, "inlineSourceMap": true, "listFiles": false // "inlineSources": false // "experimentalDecorators": true, // "emitDecoratorMetadata": true, } }