bitwarden-estensione-browser/tsconfig.json

34 lines
642 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/*": [
"jslib/src/*"
]
2018-05-13 06:19:14 +02:00
},
"typeRoots": [
"node_modules/@types"
]
2018-05-12 21:12:28 +02:00
},
"exclude": [
"node_modules",
"jslib/node_modules",
"dist",
"jslib/dist",
"jslib/spec",
"jslib/src/electron",
2018-05-15 05:16:59 +02:00
"jslib/src/angular",
2018-08-21 04:22:17 +02:00
"jslib/src/services/notifications.service.ts",
2018-05-16 22:18:33 +02:00
"build"
2018-05-12 21:12:28 +02:00
]
}