37c0423da6
Closes #9712. Co-authored-by: Kaity A <kaity@theallans.com.au> Co-authored-by: Ken Allan <ken@norganna.com> Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9820 Co-authored-by: Kaity A <supakaity@noreply.codeberg.org> Co-committed-by: Kaity A <supakaity@noreply.codeberg.org>
25 lines
494 B
JSON
25 lines
494 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./built/",
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"test/**/*"
|
|
]
|
|
}
|