1 | {
|
2 | "compilerOptions": {
|
3 | "importHelpers": true,
|
4 | "experimentalDecorators": true,
|
5 | "allowSyntheticDefaultImports": true,
|
6 | "module": "esnext",
|
7 | "target": "es2018",
|
8 | "lib": ["es6", "esnext", "es2015", "dom"],
|
9 | "moduleResolution": "node",
|
10 | "emitDecoratorMetadata": true,
|
11 | "sourceMap": true,
|
12 | "declaration": true,
|
13 | "outDir": "./dist",
|
14 | "rootDir": "./src",
|
15 | "noImplicitAny": true,
|
16 | "noImplicitThis": true,
|
17 | "alwaysStrict": true,
|
18 | "noImplicitReturns": true,
|
19 | "noUnusedLocals": true,
|
20 | "noUnusedParameters": false
|
21 | },
|
22 | "files": ["src/index.ts", "src/cli.ts", "declarations.d.ts"],
|
23 | "exclude": ["node_modules"]
|
24 | }
|