🔧(compilation) setup tsconfig package
Add a shared package for tsconfigs splitted between node and frontend concerns to centralize our standards.
This commit is contained in:
22
packages/tsconfig/base.json
Normal file
22
packages/tsconfig/base.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"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": ["./**/*"]
|
||||
}
|
||||
Reference in New Issue
Block a user