1
0
Files
metadata-action/tsconfig.json
T

23 lines
468 B
JSON
Raw Normal View History

2020-10-25 02:25:23 +01:00
{
"compilerOptions": {
2023-02-20 22:32:55 +01:00
"esModuleInterop": true,
2020-10-25 02:25:23 +01:00
"target": "es6",
"module": "commonjs",
2023-02-20 22:32:55 +01:00
"strict": true,
2020-10-25 02:25:23 +01:00
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
2022-03-22 21:09:00 +01:00
"forceConsistentCasingInFileNames": true,
2020-10-25 02:25:23 +01:00
"noImplicitAny": false,
2022-03-22 21:09:00 +01:00
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
2020-10-25 02:25:23 +01:00
},
2020-12-23 22:09:38 +01:00
"exclude": [
2023-04-17 04:42:21 +02:00
"./__mocks__/**/*",
2023-02-20 22:32:55 +01:00
"./__tests__/**/*",
"./lib/**/*",
2020-12-23 22:09:38 +01:00
"node_modules",
2022-03-22 21:09:00 +01:00
"jest.config.ts"
2020-12-23 22:09:38 +01:00
]
2020-10-25 02:25:23 +01:00
}