1 | {
|
2 | "compilerOptions": {
|
3 | "removeComments": false,
|
4 | "preserveConstEnums": true,
|
5 | "sourceMap": true,
|
6 | "declaration": true,
|
7 | "noImplicitAny": true,
|
8 | "suppressImplicitAnyIndexErrors": true,
|
9 | "module": "commonjs",
|
10 | "target": "ES5",
|
11 | "outDir": "lib/"
|
12 | },
|
13 | "formatCodeOptions": {
|
14 | "indentSize": 2,
|
15 | "tabSize": 2
|
16 | },
|
17 | "files": [
|
18 | "src/index.ts"
|
19 | ],
|
20 | "exclude": [
|
21 | "node_modules"
|
22 | ]
|
23 | }
|