mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-29 19:32:26 +08:00
- **build: replace dotenv with vite env variables (@fehmer)** - **build: combine vite config into a single file (@fehmer)** --------- Co-authored-by: Miodec <jack@monkeytype.com>
25 lines
694 B
JSON
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"]
|
|
}
|