webhook-action/tsconfig.json

24 lines
594 B
JSON
Raw Normal View History

{
"compilerOptions": {
2024-03-28 02:43:14 +00:00
"target": "es6",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": false,
"jsx": "react",
"lib": [
"dom",
2024-03-28 02:43:14 +00:00
"es6"
],
"module": "commonjs",
"noImplicitReturns": true,
"noImplicitAny": false,
"outDir": "./dist/",
2024-03-28 02:33:51 +00:00
"rootDir": "./src/",
"removeComments": true,
"sourceMap": true,
"strict": true,
2024-03-28 02:43:14 +00:00
"skipLibCheck": true
},
2022-11-10 12:40:17 +00:00
"exclude": ["node_modules", "**/*.test.ts"]
}