mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-07 07:49:50 +00:00
14 lines
300 B
JSON
14 lines
300 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"outDir": "./dist",
|
|
"rootDirs": ["src", "__tests__"],
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|