mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-13 02:55:07 +08:00
23 lines
492 B
JSON
23 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"
|
|
]
|
|
}
|