bitcoinjs-lib/tsconfig.json
2018-12-29 15:20:37 +09:00

29 lines
562 B
JSON

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