ngx-translate-extract/tsconfig.json

30 lines
655 B
JSON
Raw Normal View History

2016-12-03 15:09:39 +01:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
2016-12-07 06:03:23 +01:00
"noUnusedLocals": true,
2016-12-10 03:29:03 +01:00
"noImplicitAny": true,
2019-09-18 13:36:08 +02:00
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": true,
2016-12-08 16:10:12 +01:00
"removeComments": true,
2016-12-04 22:52:10 +01:00
"declaration": true,
"target": "es2015",
"lib": [
"dom",
"es2018"
],
2016-12-03 15:09:39 +01:00
"module": "commonjs",
"outDir": "./dist/",
2019-09-16 20:38:23 +02:00
"sourceMap": true,
"typeRoots" : [
"./node_modules/@types"
],
2016-12-03 15:09:39 +01:00
},
2016-12-04 22:52:10 +01:00
"include": [
"src/**/*.ts"
],
2016-12-03 15:09:39 +01:00
"exclude": [
"node_modules"
]
}