typescript-action/tsconfig.json

20 lines
503 B
JSON
Raw Normal View History

2019-07-22 18:15:40 +00:00
{
2023-08-23 17:37:14 +00:00
"$schema": "https://json.schemastore.org/tsconfig",
2019-07-22 18:15:40 +00:00
"compilerOptions": {
2023-08-23 17:57:44 +00:00
"target": "ES2022",
2023-09-11 17:16:20 +00:00
"module": "NodeNext",
2023-08-23 17:57:44 +00:00
"rootDir": "./src",
2023-09-11 17:16:20 +00:00
"moduleResolution": "NodeNext",
2023-08-23 17:57:44 +00:00
"baseUrl": "./",
"sourceMap": true,
2023-08-23 17:37:14 +00:00
"outDir": "./dist",
"noImplicitAny": true,
2023-08-23 17:57:44 +00:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2023-08-23 17:37:14 +00:00
"strict": true,
"skipLibCheck": true,
"newLine": "lf"
2019-07-22 18:15:40 +00:00
},
2023-08-23 17:57:44 +00:00
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"]
2019-07-22 18:15:40 +00:00
}