mirror of
https://github.com/trycua/computer.git
synced 2026-01-01 11:00:31 -06:00
29 lines
607 B
JSON
29 lines
607 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": [
|
|
"es2023"
|
|
],
|
|
"moduleDetection": "force",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "build",
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
} |