2020-08-04 03:41:09 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
// Target latest version of ECMAScript.
|
|
|
|
"target": "esnext",
|
|
|
|
// Search under node_modules for non-relative imports.
|
|
|
|
"moduleResolution": "node",
|
|
|
|
// Process & infer types from .js files.
|
|
|
|
"allowJs": true,
|
|
|
|
"jsx": "react",
|
|
|
|
// Don't emit; allow Babel to transform files.
|
|
|
|
"noEmit": true,
|
|
|
|
// Enable strictest settings like strictNullChecks & noImplicitAny.
|
|
|
|
"strict": true,
|
|
|
|
// Import non-ES modules as default imports.
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": false,
|
|
|
|
"module": "esnext",
|
|
|
|
"typeRoots": [ "**/node_modules/@types" ],
|
|
|
|
"baseUrl": "./client",
|
|
|
|
"paths": {
|
|
|
|
"@woocommerce/*": [ "../packages/*/src" ]
|
2020-08-05 22:02:24 +00:00
|
|
|
}
|
|
|
|
},
|
2020-08-20 04:02:01 +00:00
|
|
|
"exclude": [ "node_modules", "build", "build-module", "dist", "vendor" ]
|
2020-08-04 03:41:09 +00:00
|
|
|
}
|