jsketcher/tsconfig.json
2020-05-06 23:46:57 -07:00

17 lines
304 B
JSON

{
"compilerOptions": {
"lib": ["es2018", "dom"],
"sourceMap": true,
"jsx": "react",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "ES5",
"baseUrl": ".",
"paths": {
"*": [
"modules/*",
"node_modules/*"
]
}
}
}