adding monkeytype
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled

This commit is contained in:
Benjamin Falch
2026-04-23 13:53:44 +02:00
parent e214a2fd35
commit 2bc741fb78
1930 changed files with 7590652 additions and 0 deletions

28
frontend/tsconfig.json Normal file
View File

@@ -0,0 +1,28 @@
{
"extends": "@monkeytype/typescript-config/base.json",
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"types": ["vite/client", "node"],
"moduleResolution": "Bundler",
"module": "ESNext",
"allowUmdGlobalAccess": true,
"target": "ES6",
"noEmit": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"paths": {
"virtual:language-hashes": [
"./src/ts/types/virtual-language-hashes.d.ts"
],
"virtual:env-config": ["./src/ts/types/virtual-env-config.d.ts"]
}
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./scripts/**/*.ts",
"vite-plugins/**/*.ts",
"vite.config.ts"
],
"exclude": ["node_modules", "build", "setup-tests.ts", "./__tests__/**/*.*"]
}