mirror of
https://gitea.com/actions/setup-android.git
synced 2026-03-25 22:28:22 +00:00
25 lines
485 B
JSON
25 lines
485 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"lib": [
|
|
"ES2024"
|
|
],
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"lib"
|
|
]
|
|
}
|