1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00
bitwarden-browser/tsconfig.json
2018-01-06 22:13:11 -05:00

25 lines
559 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"target": "ES2016",
"module": "es6",
"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"
]
}