mailymaily/tsconfig.json

21 lines
387 B
JSON
Raw Normal View History

2020-04-07 15:21:47 +00:00
{
"compilerOptions": {
"outDir": "./dist/",
2020-06-17 21:01:27 +00:00
"sourceMap": true,
2020-07-02 10:52:31 +00:00
"noImplicitAny": true,
2020-07-31 08:28:00 +00:00
"module": "ES6",
"target": "ES6",
2020-04-07 15:21:47 +00:00
"jsx": "react",
2020-04-08 13:18:35 +00:00
"allowJs": true,
2020-06-17 12:59:45 +00:00
"moduleResolution": "node",
2020-07-03 08:06:53 +00:00
"resolveJsonModule": true,
"declaration": true
2020-04-25 12:59:37 +00:00
},
2020-07-02 09:58:47 +00:00
"include": [
"mailgo.d.ts",
2020-07-28 11:56:38 +00:00
"src",
2020-08-23 12:35:52 +00:00
// "webpack/mailgo.lib.ts",
"webpack/mailgo.dist.ts"
2020-07-02 09:58:47 +00:00
]
2020-04-07 15:21:47 +00:00
}