mirror of
https://github.com/ankitects/anki.git
synced 2026-07-21 23:46:48 -04:00
Closes https://github.com/ankitects/anki/issues/3830 --------- Co-authored-by: Fernando Lins <fernandolins@users.noreply.github.com>
15 lines
382 B
JSON
15 lines
382 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@generated/*": ["./out/ts/lib/generated/*"]
|
|
}
|
|
},
|
|
"include": ["playwright.config.ts", "ts/tests/e2e/**/*.ts"]
|
|
}
|