memories/tsconfig.json

27 lines
521 B
JSON

{
"compilerOptions": {
"lib": [
"DOM",
"ES2017",
"WebWorker"
],
"target": "ES2017",
"module": "ES2020",
"moduleResolution": "node",
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": true,
"noImplicitThis": true,
"noImplicitAny": true,
"esModuleInterop": true,
"strictNullChecks": true
},
"vueCompilerOptions": {
"target": 2.7
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS",
}
},
}