@wordpress/build
Version:
Build tool for WordPress plugins.
28 lines (26 loc) • 705 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "node16",
"moduleResolution": "node16",
"esModuleInterop": true,
"target": "es2021",
"lib": [ "es2021", "ES2020.string" ],
"rootDir": ".",
"types": [ "node" ],
// This package isn't published with types.
// Don't generate types, this is strictly for validation.
"incremental": true,
"declarationMap": false,
"emitDeclarationOnly": false,
"noEmit": true,
"outDir": ".cache"
},
"include": [ "." ],
"exclude": [
// Excluded to maintain consistency with bin/tsconfig.json
// where packages/build.mjs was also excluded
"src/build.mjs"
]
}