{1"compilerOptions": {2"target": "es2024",3"lib": [4"ES2024"5],6"module": "nodenext",7"alwaysStrict": true,8"removeComments": false,9"preserveConstEnums": true,10"sourceMap": true,11"resolveJsonModule": true,12// enable JavaScript type checking for the language service13// use the tsconfig.build.json for compiling which disable JavaScript14// type checking so that JavaScript file are not transpiled15"allowJs": true,16"strict": true,17"exactOptionalPropertyTypes": false,18"useUnknownInCatchVariables": false,19"noUnusedLocals": true,20"noUnusedParameters": true,21"newLine": "lf",22"noEmit": true23},24"include": [25"**/*.ts",26"**/*.js"27],28"exclude": [29"node_modules/**"30]31}323334