webhook/tsconfig.json
2024-03-28 12:33:51 +10:00

22 lines
564 B
JSON

{
"compilerOptions": {
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": false,
"jsx": "react",
"lib": [
"dom",
"es7"
],
"module": "commonjs",
"noImplicitReturns": true,
"noImplicitAny": false,
"outDir": "./dist/",
"rootDir": "./src/",
"removeComments": true,
"sourceMap": true,
"strict": true,
"target": "es6"
},
"exclude": ["node_modules", "**/*.test.ts"]
}