bitwarden-estensione-browser/tsconfig.json

36 lines
759 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-04-04 15:19:28 +02:00
"jslib/*": [ "jslib/src/*" ],
"@angular/*": [ "node_modules/@angular/*" ],
"angular2-toaster": [ "node_modules/angular2-toaster" ],
"angulartics2": [ "node_modules/angulartics2" ]
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",
2018-04-19 15:09:55 +02:00
"jslib/spec",
2018-04-24 23:04:49 +02:00
"jslib/src/electron",
2017-11-23 03:22:40 +01:00
"build",
2018-01-12 04:17:46 +01:00
"build.safariextension",
2017-11-23 03:22:40 +01:00
"coverage",
"store",
"src/edge"
]
}