misuzu/tsconfig.json

17 lines
394 B
JSON
Raw Normal View History

2018-11-05 17:45:22 +01:00
{
"compilerOptions": {
2018-12-09 04:42:38 +01:00
"target": "es6",
"module": "amd",
2019-06-05 16:56:37 +02:00
"jsx": "react",
"jsxFactory": "mszCreateElement",
2018-11-05 17:45:22 +01:00
"removeComments": true,
"preserveConstEnums": true,
"out": "./public/js/misuzu.js",
2018-11-05 17:45:22 +01:00
"rootDir": "./assets/typescript/",
"sourceMap": false,
},
"files": [
2019-06-13 13:53:27 +02:00
"./assets/typescript/misuzu.tsx",
]
2018-11-05 17:45:22 +01:00
}