mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-07 07:10:01 +08:00
14 lines
441 B
JSON
14 lines
441 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
|
|
},
|
|
"include": ["./src/**/*.ts", "./scripts/**/*.ts"],
|
|
"exclude": ["node_modules", "build", "setup-tests.ts", "**/*.spec.ts"]
|
|
}
|