@itwin/build-tools
Version:
Bentley build tools
20 lines (19 loc) • 453 B
JSON
{
"extends": "./tsconfig-base.json",
"compilerOptions": {
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"inlineSources": false,
"incremental": false,
"rootDir": "./src",
"outDir": "." // We want the files to be accessible within a directory at the root alongside the scripts directory
},
"include": [
"./src/**/*.ts"
],
"exclude": [
"lib",
"node_modules"
]
}