honcho/sdks/typescript/tsconfig.json

26 lines
421 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"declaration": true,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"lib": [
"es6",
"dom"
]
},
"include": [
"src/**/*",
],
"exclude": [
"node_modules",
"dist"
],
"baseUrl": ".",
}