Files
docx-js/tsconfig.json

21 lines
547 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,
"outDir": "./build",
"rootDir": "./src",
"module": "commonjs",
2017-12-06 01:03:14 +00:00
"declaration": true,
2017-12-19 21:42:17 +00:00
"noUnusedLocals": true,
2018-08-07 01:38:15 +01:00
"noUnusedParameters": true,
"baseUrl": "./src",
2021-03-09 02:23:22 +00:00
"paths": {
"/*": ["./*"]
2017-12-19 21:42:17 +00:00
}
2016-03-27 03:09:50 +01:00
},
2021-03-09 02:23:22 +00:00
"exclude": ["node_modules", "tests", "**/_*", "demo", "scripts", "webpack.config.ts"]
}