1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-27 19:49:42 +01:00

24 lines
478 B
JSON
Raw Normal View History

2018-01-03 21:20:58 -05:00
{
"compilerOptions": {
"pretty": true,
"moduleResolution": "node",
2018-04-18 12:59:48 -04:00
"target": "ES6",
"module": "commonjs",
2018-06-11 13:32:53 -04:00
"lib": ["es5", "es6", "dom"],
"sourceMap": true,
2018-01-05 22:46:51 -05:00
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declarationDir": "dist/types",
2018-04-18 12:59:48 -04:00
"outDir": "dist",
"typeRoots": [
"node_modules/@types"
]
2018-01-03 21:20:58 -05:00
},
2018-01-05 22:46:51 -05:00
"include": [
2018-04-18 12:59:48 -04:00
"src",
"spec"
2018-01-03 21:20:58 -05:00
]
}