wisemapping-frontend/packages/webapp/tsconfig.json

15 lines
316 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./dist/",
2020-12-12 22:12:29 +01:00
"sourceMap": true,
2020-12-26 06:39:54 +01:00
"noImplicitAny": false,
2021-02-16 10:37:24 +01:00
"module": "es6",
2021-02-16 10:15:04 +01:00
"target": "es6",
2020-12-12 22:12:29 +01:00
"allowJs": true,
2022-12-16 04:32:22 +01:00
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react"
2021-02-16 10:37:24 +01:00
},
2021-02-16 17:35:26 +01:00
"exclude": ["node_modules"]
2020-12-12 22:12:29 +01:00
}