bitwarden-estensione-browser/tsconfig.json

25 lines
451 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,
"types": [],
"baseUrl": ".",
"paths": {
2018-02-19 22:06:26 +01:00
"jslib/*": [ "jslib/src/*" ]
2018-01-16 20:48:34 +01:00
}
},
"exclude": [
"node_modules",
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-01-16 20:48:34 +01:00
"build"
]
}