mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-06 21:54:01 -05:00
25 lines
552 B
JSON
25 lines
552 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Base",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
|
|
"verbatimModuleSyntax": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"noEmit": true
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|