2024-06-28 16:15:51 +00:00
|
|
|
{
|
|
|
|
"include": [
|
|
|
|
"*",
|
|
|
|
"tests/e2e/**/*",
|
|
|
|
"tools/**/*",
|
|
|
|
"web_src/js/**/*",
|
|
|
|
],
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2020",
|
|
|
|
"module": "node16",
|
|
|
|
"moduleResolution": "node16",
|
|
|
|
"lib": ["dom", "dom.iterable", "dom.asynciterable", "esnext"],
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
"stripInternal": true,
|
|
|
|
"strict": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
|
|
"exactOptionalPropertyTypes": false,
|
2024-07-07 15:32:30 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"types": [
|
|
|
|
"vitest/globals",
|
2024-08-30 07:36:53 +00:00
|
|
|
"./web_src/js/globals.d.ts",
|
2024-07-07 15:32:30 +00:00
|
|
|
],
|
2024-06-28 16:15:51 +00:00
|
|
|
}
|
|
|
|
}
|