misuzu/tsconfig.json

17 lines
395 B
JSON
Raw Normal View History

2018-11-05 17:45:22 +01:00
{
"compilerOptions": {
2019-08-13 04:47:58 +02:00
"target": "es5",
"module": "none",
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
}