1
0
mirror of https://github.com/danog/fast-srp.git synced 2024-11-26 20:04:49 +01:00
fast-srp/tsconfig.json

23 lines
442 B
JSON
Raw Normal View History

{
"compilerOptions": {
2020-04-12 19:01:18 +02:00
"target": "ES2018",
"module": "commonjs",
"lib": [
"es2015",
"es2016",
"es2017",
"es2018"
],
"declaration": true,
2020-04-12 19:01:18 +02:00
"declarationMap": true,
"sourceMap": true,
2020-04-12 19:01:18 +02:00
"outDir": "lib",
"rootDir": "src",
2020-04-12 19:01:18 +02:00
"strict": true,
"esModuleInterop": true
},
"include": [
2020-04-12 19:01:18 +02:00
"src/"
]
}