1{
2    "compilerOptions": {
3        "outDir": "build"
4    },
5    "files": [
6        "file1.ts",
7        "file2.ts"
8    ],
9    "include": [
10        "src/component1",
11        "src/**/*Util?.ts",
12        "src/component2/exampleComponent?.ts",
13        "test",
14        "main.ts",
15        "non_existent_path"
16    ],
17    "exclude": [
18        "src/component1/exampleUtil?.ts",
19        "src/component1/index.ts"
20    ]
21}
22