ngx-translate-extract/tsconfig.json

27 lines
551 B
JSON
Raw Normal View History

2016-12-03 17:09:39 +03:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
2016-12-07 08:03:23 +03:00
"noUnusedLocals": true,
2016-12-10 05:29:03 +03:00
"noImplicitAny": true,
2016-12-08 18:10:12 +03:00
"removeComments": true,
2016-12-05 00:52:10 +03:00
"declaration": true,
"target": "es2015",
"lib": [
"dom",
"es2018"
],
2016-12-03 17:09:39 +03:00
"module": "commonjs",
"outDir": "./dist/",
2019-09-16 21:38:23 +03:00
"sourceMap": true,
"typeRoots" : [
"./node_modules/@types"
],
2016-12-03 17:09:39 +03:00
},
2016-12-05 00:52:10 +03:00
"include": [
"src/**/*.ts"
],
2016-12-03 17:09:39 +03:00
"exclude": [
"node_modules"
]
}