webhook-action/tsconfig.json

22 lines
535 B
JSON
Raw Normal View History

{
"compilerOptions": {
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": false,
"jsx": "react",
"lib": [
"dom",
"es7"
],
"module": "commonjs",
"noImplicitReturns": true,
"noImplicitAny": false,
"outDir": "./dist/",
"removeComments": true,
"sourceMap": true,
"strict": true,
2022-11-10 12:40:17 +00:00
"target": "es6"
},
2022-11-10 12:40:17 +00:00
"exclude": ["node_modules", "**/*.test.ts"]
}