mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
23 lines
551 B
JSON
23 lines
551 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"lib": ["es5", "es6", "es7", "dom"],
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declarationDir": "dist/types",
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"jslib-common/*": ["../common/src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "spec"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|