@itwin/build-tools 3.0.0-dev.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/tsconfig.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "extends": "./tsconfig-base.json",
3
+ "compilerOptions": {
4
+ "declaration": false,
5
+ "declarationMap": false,
6
+ "sourceMap": false,
7
+ "inlineSources": false,
8
+ "incremental": false,
9
+ "rootDir": "./src",
10
+ "outDir": "." // We want the files to be accessible within a directory at the root alongside the scripts directory
11
+ },
12
+ "include": [
13
+ "./src/**/*.ts"
14
+ ],
15
+ "exclude": [
16
+ "lib",
17
+ "node_modules"
18
+ ]
19
+ }