1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-27 10:46:02 +02:00
bitwarden-browser/tsconfig.json
2019-03-27 14:41:06 -04:00

28 lines
529 B
JSON

{
"compilerOptions": {
"pretty": true,
"moduleResolution": "node",
"target": "ES6",
"module": "commonjs",
"lib": ["es5", "es6", "dom"],
"sourceMap": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declarationDir": "dist/types",
"outDir": "dist",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src",
"spec"
],
"exclude": [
"node_modules",
"dist"
]
}