Files
bandada/tsconfig.json
2023-03-24 10:24:26 +05:30

24 lines
628 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"target": "ES5",
"module": "ES6",
"noImplicitAny": false,
"moduleResolution": "node",
"esModuleInterop": true,
"preserveConstEnums": true,
"resolveJsonModule": true,
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"declarationDir": "types",
"paths": {
"@bandada/*": ["libs/*/src"]
}
}
}