mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-26 17:08:33 +01:00
2d03c486b6
* Add multiple build targets, for umd, es5 and es6. * Remove lodash.camelcase.
26 lines
579 B
JSON
26 lines
579 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "ES2016",
|
|
"module": "es6",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declarationDir": "dist/types",
|
|
"outDir": "dist/es",
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|