1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-26 05:03:41 +00:00
Files
jslib/node/tsconfig.json
2021-12-10 16:07:47 +01:00

36 lines
681 B
JSON

{
"compilerOptions": {
"pretty": true,
"moduleResolution": "node",
"noImplicitAny": true,
"target": "ES6",
"module": "commonjs",
"lib": ["es5", "es6", "es7", "dom"],
"sourceMap": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declarationDir": "dist/types",
"outDir": "dist",
"paths": {
"jslib-common/*": [
"../common/src/*"
]
},
"plugins": [
{
"transform": "typescript-transform-paths"
}
]
},
"include": [
"src",
"spec"
],
"exclude": [
"node_modules",
"dist"
]
}