memories/tsconfig.json

19 lines
401 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,
"esModuleInterop": true,
"strictNullChecks": true
2022-12-10 20:31:17 +00:00
},
"vueCompilerOptions": {
"target": 2.7
2022-11-24 19:36:41 +00:00
}
}