13 lines
283 B
JSON
13 lines
283 B
JSON
// This is the base tsconfig
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"module": "ES2020",
|
|
"moduleResolution": "Node",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
|
|
// more compiler options?
|
|
"strict": false, // maybe enable later..?
|
|
}
|
|
}
|