bitwarden-estensione-browser/libs/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
756 B
JSON
Raw Permalink Normal View History

2018-01-04 03:20:58 +01:00
{
"compilerOptions": {
"pretty": true,
"moduleResolution": "node",
"noImplicitAny": true,
2018-04-18 18:59:48 +02:00
"target": "ES6",
"module": "commonjs",
"lib": ["es5", "es6", "es7", "dom"],
"sourceMap": true,
2018-01-06 04:46:51 +01:00
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declarationDir": "dist/types",
2018-04-18 18:59:48 +02:00
"outDir": "dist",
"baseUrl": ".",
"paths": {
"jslib-common/*": ["common/src/*"],
"jslib-angular/*": ["angular/src/*"],
"jslib-electron/*": ["electron/src/*"],
"jslib-node/*": ["node/src/*"]
},
"plugins": [
{
"transform": "typescript-transform-paths"
}
]
2018-01-04 03:20:58 +01:00
},
2019-03-27 19:41:06 +01:00
"exclude": ["node_modules", "dist"]
2018-01-04 03:20:58 +01:00
}