bitwarden-estensione-browser/tsconfig.json

29 lines
556 B
JSON
Raw Normal View History

2018-01-04 03:20:58 +01:00
{
"compilerOptions": {
"pretty": true,
"moduleResolution": "node",
"noImplicitAny": true,
2018-04-18 18:59:48 +02:00
"target": "ES6",
"module": "commonjs",
2018-06-11 19:32:53 +02:00
"lib": ["es5", "es6", "dom"],
"sourceMap": true,
2018-01-06 04:46:51 +01:00
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declarationDir": "dist/types",
2018-04-18 18:59:48 +02:00
"outDir": "dist",
"typeRoots": [
"node_modules/@types"
]
2018-01-04 03:20:58 +01:00
},
2018-01-06 04:46:51 +01:00
"include": [
2018-04-18 18:59:48 +02:00
"src",
"spec"
2019-03-27 19:41:06 +01:00
],
"exclude": [
"node_modules",
"dist"
2018-01-04 03:20:58 +01:00
]
}