events-typed
Version:
A typesafe EventEmitter for TypeScript that wraps Node.js EventEmitter.
37 lines (36 loc) • 949 B
JSON
{
"compilerOptions": {
"allowSyntheticDefaultImports": false,
"alwaysStrict": true,
"declaration": true,
"declarationMap": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": ["es2017", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noResolve": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./dist",
"preserveConstEnums": true,
"preserveSymlinks": true,
"preserveWatchOutput": true,
"pretty": true,
"skipLibCheck": false,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "ES5"
},
"compileOnSave": true,
"include": ["src/**/*"]
}