bitwarden-estensione-browser/tsconfig.json

32 lines
560 B
JSON
Raw Normal View History

{
"compilerOptions": {
2018-01-08 22:48:05 +01:00
"moduleResolution": "node",
"noImplicitAny": true,
2018-04-04 04:14:54 +02:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2018-01-08 22:48:05 +01:00
"module": "es6",
"target": "ES2016",
"allowJs": true,
"sourceMap": true,
"types": [
"jasmine"
2018-01-09 20:26:20 +01:00
],
"baseUrl": ".",
"paths": {
2018-02-19 23:01:00 +01:00
"jslib/*": [ "jslib/src/*" ]
2018-01-09 20:26:20 +01:00
}
},
"exclude": [
"node_modules",
2018-02-24 05:48:06 +01:00
"jslib/node_modules",
2017-11-23 03:22:40 +01:00
"dist",
2018-02-24 05:48:06 +01:00
"jslib/dist",
2017-11-23 03:22:40 +01:00
"build",
2018-04-04 04:14:54 +02:00
"build2",
2018-01-12 04:17:46 +01:00
"build.safariextension",
2017-11-23 03:22:40 +01:00
"coverage",
"store",
"src/edge"
]
}