mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 18:13:24 +01:00
11 lines
390 B
JSON
11 lines
390 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig-lib.json",
|
|
"compilerOptions": {
|
|
// Emit exactly the same code as normal tsconfig, but with ES6 import & export statements instead of CommonJS
|
|
"module": "esnext",
|
|
"outDir": "lib-module",
|
|
// Skip declaration emit; it's redundant here.
|
|
"declaration": false
|
|
}
|
|
}
|