mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-22 07:01:28 +00:00
47e009267b
Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
18 lines
396 B
JSON
18 lines
396 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "esnext",
|
|
"lib": ["esnext", "DOM"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationDir": "./dist"
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|