kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
33 wiersze
732 B
JSON
33 wiersze
732 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ESNext"],
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
"useDefineForClassFields": true,
|
|
"jsx": "preserve",
|
|
|
|
// NOTE: these are deprecated
|
|
// "experimentalDecorators": true,
|
|
// "emitDecoratorMetadata": true,
|
|
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "dist",
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src"],
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
}
|
|
}
|