bitwarden-desktop/tsconfig.json

30 lines
556 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",
"sourceMap": true,
"types": [],
2018-01-16 20:48:34 +01:00
"baseUrl": ".",
"paths": {
2018-10-14 04:47:27 +02:00
"tldjs": [
"jslib/src/misc/tldjs.noop"
],
2018-09-12 19:12:44 +02:00
"jslib/*": [
"jslib/src/*"
],
2018-01-16 20:48:34 +01:00
}
},
2018-09-13 18:04:04 +02:00
"angularCompilerOptions": {
"preserveWhitespaces": true
},
"files": [
"src/entry.ts",
"src/global.d.ts",
"jslib/src/globals.d.ts"
2018-01-16 20:48:34 +01:00
]
}