js-libp2p-noise/tsconfig.json
Hugo Dias 2038b26b76
fix: fix setup for new aegir
- tweak tsconfig.js
- add ts type check including test files
- fix ci setup for new aegir
- add new awesome aegir docs feature
  - you can publish to github pages with the flag --publish
2021-01-26 21:52:12 +00:00

29 lines
517 B
JSON

{
"compilerOptions": {
"outDir": "dist",
"incremental": true,
"composite": true,
"target": "ES2018",
"module": "commonjs",
"strict": true,
"allowJs": true,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noImplicitAny": false,
"typeRoots": [
"./node_modules/@types",
"./src/@types"
]
},
"include": [
"**/test/**/*.ts",
"**/src/**/*.ts",
"**/src/**/*.js"
],
"exclude": [
"node_modules",
"dist"
]
}