js-libp2p-noise/tsconfig.json

29 lines
517 B
JSON
Raw Permalink Normal View History

2019-10-30 15:02:03 +01:00
{
"compilerOptions": {
"outDir": "dist",
"incremental": true,
"composite": true,
2020-06-18 22:23:39 +01:00
"target": "ES2018",
2019-10-30 15:02:03 +01:00
"module": "commonjs",
"strict": true,
2020-06-19 10:03:34 +01:00
"allowJs": true,
2020-06-19 12:49:10 +02:00
"sourceMap": true,
"resolveJsonModule": true,
2019-10-30 15:02:03 +01:00
"esModuleInterop": true,
"noImplicitAny": false,
2019-10-30 15:02:03 +01:00
"typeRoots": [
2019-11-04 22:09:42 +01:00
"./node_modules/@types",
2019-11-20 13:23:36 +01:00
"./src/@types"
2019-10-30 15:02:03 +01:00
]
},
"include": [
"**/test/**/*.ts",
2020-06-19 10:03:34 +01:00
"**/src/**/*.ts",
"**/src/**/*.js"
],
2019-10-30 15:02:03 +01:00
"exclude": [
2020-06-18 22:23:39 +01:00
"node_modules",
"dist"
2019-10-30 15:02:03 +01:00
]
2019-10-31 17:35:18 +01:00
}