jsketcher/tsconfig.json
2020-07-13 17:02:58 -07:00

23 lines
430 B
JSON

{
"compilerOptions": {
"lib": ["es2018", "dom"],
"sourceMap": true,
"jsx": "react",
"esModuleInterop": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"target": "ES2015",
"baseUrl": ".",
"downlevelIteration": true,
"module": "commonJS",
"paths": {
"*": [
"modules/*",
"node_modules/*"
]
}
},
"includes": [
"./externals.d.ts"
]
}