Files
typescript-action/tsconfig.json
T

20 lines
503 B
JSON
Raw Normal View History

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