typescript-action/tsconfig.json

14 lines
300 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:37:14 +00:00
"target": "es6",
"module": "commonjs",
"outDir": "./dist",
"rootDirs": ["src", "__tests__"],
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true
2019-07-22 18:15:40 +00:00
},
2023-08-23 17:37:14 +00:00
"exclude": ["node_modules"]
2019-07-22 18:15:40 +00:00
}