bitwarden-estensione-browser/tsconfig.json

26 lines
464 B
JSON
Raw Normal View History

2018-05-12 21:12:28 +02:00
{
"compilerOptions": {
2018-05-13 03:24:28 +02:00
"pretty": true,
"moduleResolution": "node",
2018-05-15 05:16:59 +02:00
"target": "ES2016",
"module": "es6",
2018-05-12 21:12:28 +02:00
"noImplicitAny": true,
2018-07-25 15:58:01 +02:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2018-05-12 21:12:28 +02:00
"allowJs": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"jslib-common/*": [
"jslib/common/src/*"
],
"jslib-node/*": [
"jslib/node/src/*"
2018-05-12 21:12:28 +02:00
]
}
2018-05-12 21:12:28 +02:00
},
"include": [
"src"
2018-05-12 21:12:28 +02:00
]
}