1{
2 "include": [
3 "*",
4 "tests/e2e/**/*",
5 "tools/**/*",
6 "web_src/js/**/*",
7 ],
8 "compilerOptions": {
9 "target": "ESNext",
10 "module": "ESNext",
11 "moduleResolution": "Bundler",
12 "lib": ["dom", "dom.iterable", "dom.asynciterable", "esnext"],
13 "allowImportingTsExtensions": true,
14 "allowJs": true,
15 "allowSyntheticDefaultImports": true,
16 "alwaysStrict": true,
17 "esModuleInterop": true,
18 "isolatedModules": true,
19 "noEmit": true,
20 "resolveJsonModule": true,
21 "skipLibCheck": true,
22 "verbatimModuleSyntax": true,
23 "stripInternal": true,
24 "strict": false,
25 "noUnusedLocals": true,
26 "noUnusedParameters": true,
27 "noPropertyAccessFromIndexSignature": false,
28 "exactOptionalPropertyTypes": false,
29 }
30}