memories/tsconfig.json

27 lines
521 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",
"WebWorker"
],
"target": "ES2017",
"module": "ES2020",
2022-11-24 19:36:41 +00:00
"moduleResolution": "node",
"sourceMap": true,
"allowSyntheticDefaultImports": true,
2022-12-10 17:58:30 +00:00
"useDefineForClassFields": true,
2022-12-10 18:59:36 +00:00
"noImplicitThis": true,
"noImplicitAny": true,
"esModuleInterop": true,
"strictNullChecks": true
2022-12-10 20:31:17 +00:00
},
"vueCompilerOptions": {
"target": 2.7
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS",
}
},
}