mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-30 03:43:00 +08:00
22 lines
446 B
JSON
22 lines
446 B
JSON
{
|
|
"extends": "@monkeytype/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"target": "ES6",
|
|
"noImplicitAny": false,
|
|
"strictFunctionTypes": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"worker.js",
|
|
"setup-tests.ts",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|