bitwarden-estensione-browser/tsconfig.json

32 lines
593 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",
"target": "ES6",
"module": "commonjs",
2018-05-12 21:12:28 +02:00
"noImplicitAny": true,
"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",
"jslib/src/angular/components/modal.component.ts",
"jslib/src/angular/dummy.module.ts",
"build"
]
}