memories/tsconfig.json

15 lines
322 B
JSON
Raw Normal View History

2022-09-13 01:33:24 +00:00
{
2022-11-24 19:36:41 +00:00
"compilerOptions": {
"lib": ["dom", "es2017"],
"target": "ES2017",
"module": "es2020",
"moduleResolution": "node",
"sourceMap": true,
"allowSyntheticDefaultImports": true,
2022-12-10 17:58:30 +00:00
"jsx": "preserve",
"useDefineForClassFields": true,
2022-12-10 18:59:36 +00:00
"noImplicitThis": true,
2022-12-10 17:58:30 +00:00
"esModuleInterop": true
2022-11-24 19:36:41 +00:00
}
}