bitcoinjs-lib/tsconfig.json

32 lines
652 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"outDir": "./src",
"declaration": true,
"rootDir": "./ts_src",
"types": [
"node"
],
2018-12-26 10:37:09 +01:00
"allowJs": false,
2018-12-29 02:38:22 +01:00
"strict": true,
2018-12-28 16:53:54 +01:00
"noImplicitAny": true,
2018-12-28 17:55:07 +01:00
"strictNullChecks": true,
2018-12-26 10:37:09 +01:00
"strictFunctionTypes": true,
"strictBindCallApply": true,
2018-12-29 02:35:57 +01:00
"strictPropertyInitialization": true,
2018-12-28 17:55:07 +01:00
"noImplicitThis": true,
"alwaysStrict": true,
"esModuleInterop": false,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": [
"ts_src/**/*.ts"
],
"exclude": [
"**/*.spec.ts",
"node_modules/**/*"
]
}