Files
collabvm-1.2.ts/tsconfig.json

12 lines
268 B
JSON
Raw Normal View History

// This is the base tsconfig the entire cvmts project uses
2023-01-31 22:00:30 -05:00
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Node",
"types": ["node"],
"allowSyntheticDefaultImports": true,
"strict": true,
}
2023-01-31 22:00:30 -05:00
}