Add a shared package for tsconfigs splitted between node and frontend concerns to centralize our standards.
23 lines
414 B
JSON
23 lines
414 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"es6",
|
|
"scripthost",
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"es2021.string",
|
|
"esnext.intl"
|
|
],
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true
|
|
},
|
|
"include": ["./**/*"]
|
|
}
|