ngx-translate-extract/tsconfig.json
2019-09-19 15:24:00 +02:00

32 lines
704 B
JSON

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