api-mixer/tsconfig.json

18 lines
363 B
JSON
Raw Permalink Normal View History

2018-10-17 15:34:36 +00:00
{
"compilerOptions": {
2018-10-22 16:22:16 +00:00
"baseUrl": ".",
"paths": { "*": ["types/*"] },
2018-10-17 15:34:36 +00:00
"module": "commonjs",
2018-10-23 18:59:33 +00:00
// "noImplicitAny": true,
2018-10-17 15:34:36 +00:00
"removeComments": true,
"moduleResolution": "node",
"target": "es6",
2018-10-23 18:59:33 +00:00
"outDir": "dist",
2018-10-17 15:34:36 +00:00
},
"include": [
"src/**/*"
2018-10-23 18:59:33 +00:00
],
"exclude": [
"node_modules/**/*"
2018-10-22 16:22:16 +00:00
]
2018-10-17 15:34:36 +00:00
}