woocommerce/tools/code-analyzer/tsconfig.json

18 lines
261 B
JSON
Raw Normal View History

{
"compilerOptions": {
"declaration": true,
"importHelpers": true,
"module": "commonjs",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"target": "es2019",
"typeRoots": [
"./node_modules/@types"
],
},
"include": [
"src/**/*"
]
}