mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 01:53:24 +01:00
21 lines
467 B
JSON
21 lines
467 B
JSON
|
{
|
||
|
"files": ["./src/index.ts"],
|
||
|
"compilerOptions": {
|
||
|
"strict": true,
|
||
|
"composite": true,
|
||
|
"incremental": true,
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"isolatedModules": true,
|
||
|
"target": "ESNext",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "NodeNext",
|
||
|
"rootDir": "./src",
|
||
|
"outDir": "./dist",
|
||
|
"lib": ["ESNext"],
|
||
|
"types": ["node", "@cloudflare/workers-types"]
|
||
|
},
|
||
|
"exclude": ["node_modules", "**/*.test.ts"],
|
||
|
"include": ["src/index.ts"]
|
||
|
}
|