misuzu/tsconfig.json

17 lines
395 B
JSON
Raw Normal View History

2018-11-05 16:45:22 +00:00
{
"compilerOptions": {
2019-08-13 02:47:58 +00:00
"target": "es5",
"module": "none",
2019-06-05 14:56:37 +00:00
"jsx": "react",
"jsxFactory": "mszCreateElement",
2018-11-05 16:45:22 +00:00
"removeComments": true,
"preserveConstEnums": true,
"out": "./public/js/misuzu.js",
2018-11-05 16:45:22 +00:00
"rootDir": "./assets/typescript/",
"sourceMap": false,
},
"files": [
2019-06-13 11:53:27 +00:00
"./assets/typescript/misuzu.tsx",
]
2018-11-05 16:45:22 +00:00
}