1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-07 11:03:13 +00:00
Files
jslib/common/tsconfig.json
2022-01-03 12:04:50 +01:00

38 lines
704 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"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": {
"src/*": [
"./src/*"
]
},
"plugins": [
{
"transform": "typescript-transform-paths"
}
]
},
"include": [
"src",
"spec"
],
"exclude": [
"node_modules",
"dist"
]
}