misuzu/tsconfig.json

17 lines
393 B
JSON
Raw Normal View History

2018-11-05 16:45:22 +00:00
{
"compilerOptions": {
2018-12-09 03:42:38 +00:00
"target": "es6",
"module": "amd",
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": [
"./assets/typescript/misuzu.ts",
]
2018-11-05 16:45:22 +00:00
}