bitcoinjs-lib/tsconfig.json
2018-12-29 15:23:14 +09:00

28 lines
561 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./",
"types": [
"node"
],
"allowJs": false,
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": false,
"noImplicitThis": false,
"alwaysStrict": false,
"esModuleInterop": true
},
"include": [
"src/**/*"
],
"exclude": [
"**/*.spec.ts",
"node_modules/**/*"
]
}