2023-01-12 16:56:35 +00:00
|
|
|
{
|
|
|
|
"extends": "@vtex/tsconfig",
|
|
|
|
"compilerOptions": {
|
|
|
|
"noEmitOnError": false,
|
2023-02-04 17:50:58 +00:00
|
|
|
"lib": ["dom", "dom.iterable"],
|
2023-01-12 16:56:35 +00:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2023-02-04 17:50:58 +00:00
|
|
|
"target": "es2017",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true
|
2023-01-12 16:56:35 +00:00
|
|
|
},
|
2023-01-28 01:59:59 +00:00
|
|
|
"include": [
|
|
|
|
"./typings/*.d.ts",
|
|
|
|
"./**/*.tsx",
|
|
|
|
"./**/*.ts",
|
2023-02-01 23:50:50 +00:00
|
|
|
"components/placeholder/index.tsx",
|
2023-02-04 17:50:58 +00:00
|
|
|
"PlaceholderAdd.tsx"
|
2023-01-28 01:59:59 +00:00
|
|
|
]
|
|
|
|
}
|