jsketcher/tsconfig.json
2020-05-14 22:50:06 -07:00

19 lines
357 B
JSON

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