Files
docx-js/src/tsconfig.json

27 lines
551 B
JSON
Raw Normal View History

2016-03-26 23:57:37 +00:00
{
"compilerOptions": {
"target": "es6",
"strictNullChecks": true,
2016-03-26 23:57:37 +00:00
"sourceMap": true,
"removeComments": true,
"preserveConstEnums": true,
2016-03-28 00:53:24 +01:00
"outDir": "../build",
2016-03-26 23:57:37 +00:00
"sourceRoot": "./",
2016-03-28 00:53:24 +01:00
"rootDir": "./",
"module": "commonjs",
2017-12-06 01:03:14 +00:00
"declaration": true,
2017-12-19 21:42:17 +00:00
"noUnusedLocals": true,
"baseUrl": "./",
"paths" : {
"/*": [
"./*"
]
}
2016-03-27 03:09:50 +01:00
},
"exclude": [
"tests",
"**/*.spec.ts",
"**/_*"
2016-03-27 03:09:50 +01:00
]
}