/ tests / javascript / tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ES2022",
 4      "module": "ES2022",
 5      "moduleResolution": "Bundler",
 6      "lib": ["ES2022", "DOM"],
 7      "strict": true,
 8      "skipLibCheck": true,
 9      "noEmit": true,
10      "allowImportingTsExtensions": true
11    },
12    "include": ["tests"]
13  }
14  
15