UNPKG

434 BJSONView Raw
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}