bitwarden-estensione-browser/tsconfig.json

21 lines
413 B
JSON
Raw Normal View History

2018-01-04 03:20:58 +01:00
{
"compilerOptions": {
"moduleResolution": "node",
2018-01-04 03:20:58 +01:00
"target": "ES2016",
"module": "es6",
"sourceMap": true,
2018-01-06 04:46:51 +01:00
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declarationDir": "dist/types",
"outDir": "dist/es",
"typeRoots": [
"node_modules/@types"
]
2018-01-04 03:20:58 +01:00
},
2018-01-06 04:46:51 +01:00
"include": [
"src"
2018-01-04 03:20:58 +01:00
]
}