mirror of
https://github.com/raniendu/OChat.git
synced 2026-07-22 07:46:11 +00:00
23 lines
390 B
JSON
23 lines
390 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2021",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "Bundler",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES2021"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"tests/**/*.ts"
|
|
]
|
|
}
|