Files
figlet-http/tsconfig.json
Kevin Midboe c8f87ade58 Refactored to typescript & more consistent code
Updated how we interface with figlet and unified error handling &
response.
2022-11-02 21:14:12 +01:00

16 lines
349 B
JSON

{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"strict": false,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"outDir": "lib"
},
"include": ["src/**/*.js", "src/**/*.ts", "src/**/*.d.ts"],
"exclude": ["node_modules"]
}