mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-16 00:04:34 +00:00
29 lines
711 B
JSON
29 lines
711 B
JSON
{
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": true,
|
|
"preserveWhitespaces": true
|
|
},
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"target": "ES2016",
|
|
"module": "ES2020",
|
|
"lib": ["es5", "es6", "es7", "dom"],
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declaration": false,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"tldjs": ["@/jslib/src/misc/tldjs.noop"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"useDefineForClassFields": false
|
|
},
|
|
"include": ["src", "src-cli", "jslib", "scripts"]
|
|
}
|