monkeytype/frontend/tsconfig.json
Christian Fehmer 8cce5bfc7e
build: combine vite config into a single file (@fehmer) (#7190)
- **build: replace dotenv with vite env variables (@fehmer)**
- **build: combine vite config into a single file (@fehmer)**

---------

Co-authored-by: Miodec <jack@monkeytype.com>
2025-12-05 19:45:12 +01:00

25 lines
694 B
JSON

{
"extends": "@monkeytype/typescript-config/base.json",
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"types": ["vite/client", "node", "jquery"],
"moduleResolution": "Bundler",
"module": "ESNext",
"allowUmdGlobalAccess": true,
"target": "ES6",
"noEmit": true,
"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",
"./scripts/**/*.ts",
"vite-plugins/**/*.ts",
"vite.config.ts"
],
"exclude": ["node_modules", "build", "setup-tests.ts", "**/*.spec.ts"]
}