mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
21 lines
527 B
JSON
21 lines
527 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",
|
|
"typeRoots": ["node_modules/@types"]
|
|
},
|
|
"include": ["src", "spec"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|