mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-21 19:34:34 +00:00
21 lines
382 B
JSON
21 lines
382 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node16",
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"incremental": true,
|
|
"lib": [
|
|
"esnext",
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"built/**/*.ts"
|
|
],
|
|
"exclude": []
|
|
}
|