monkeytype/backend/tsconfig.json
2024-07-25 19:59:05 +02:00

24 lines
492 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
},
"files": ["./src/types/types.d.ts"],
"include": ["./src/**/*"],
"exclude": [
"node_modules",
"build",
"worker.js",
"setup-tests.ts",
"**/*.spec.ts"
]
}