bitwarden-desktop/tsconfig.json

33 lines
729 B
JSON
Raw Normal View History

2018-01-16 20:48:34 +01:00
{
"compilerOptions": {
"moduleResolution": "node",
"noImplicitAny": true,
2018-01-23 05:37:36 +01:00
"emitDecoratorMetadata": true,
2018-01-16 20:48:34 +01:00
"experimentalDecorators": true,
"module": "es6",
"target": "ES2016",
"allowJs": true,
"sourceMap": true,
2018-04-24 22:30:47 +02:00
"types": [
"node"
],
2018-01-16 20:48:34 +01:00
"baseUrl": ".",
"paths": {
2018-04-04 15:19:39 +02:00
"jslib/*": [ "jslib/src/*" ],
"@angular/*": [ "node_modules/@angular/*" ],
"angular2-toaster": [ "node_modules/angular2-toaster" ],
"angulartics2": [ "node_modules/angulartics2" ]
2018-01-16 20:48:34 +01:00
}
},
"exclude": [
"node_modules",
2018-04-24 22:30:47 +02:00
"src/node_modules",
"jslib/node_modules/electron/electron.d.ts",
2018-02-24 05:11:42 +01:00
"jslib/node_modules",
2018-01-16 20:48:34 +01:00
"dist",
2018-02-24 05:11:42 +01:00
"jslib/dist",
2018-04-19 14:09:04 +02:00
"build",
"jslib/spec"
2018-01-16 20:48:34 +01:00
]
}