monkeytype/backend/tsconfig.json
2024-09-20 11:54:14 +02:00

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"
]
}