mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
29 lines
556 B
JSON
29 lines
556 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"lib": ["es5", "es6", "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"
|
|
]
|
|
}
|