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

24 lines
458 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
2021-08-04 15:22:24 +02:00
"target": "ES3",
2020-04-12 19:01:18 +02:00
"module": "commonjs",
"lib": [
2021-08-04 15:22:24 +02:00
"es5",
2020-04-12 19:01:18 +02:00
"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/"
]
}