mirror of
https://github.com/woocommerce/woocommerce.git
synced 2025-02-24 11:22:10 +08:00
In this PR, we consolidate TypeScript config files (using the 'include' setting) and JS test directory naming. The goal is to reduce the number of processed files during different build steps.
18 lines
288 B
JSON
18 lines
288 B
JSON
{
|
|
"extends": "../tsconfig",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "build-module",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"declarationDir": "./build-types",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"typings/**/*",
|
|
"src/**/*",
|
|
]
|
|
}
|