ngx-translate-extract/tsconfig.json

24 lines
479 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"removeComments": true,
"declaration": true,
"target": "es2015",
"lib": [
"dom",
"es2018"
],
"module": "commonjs",
"outDir": "./dist/",
"sourceMap": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}