1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-28 22:23:14 +00:00
Files
jslib/common/tsconfig.json
2021-12-10 15:03:16 +01:00

28 lines
549 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"
},
"include": [
"src",
"spec"
],
"exclude": [
"node_modules",
"dist"
]
}