mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
24 lines
579 B
JSON
24 lines
579 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",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"tldjs": ["@/jslib/src/misc/tldjs.noop"],
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["src", "jslib", "scripts", "./*.ts"]
|
|
}
|