2020-07-22 00:35:23 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-09-30 18:21:47 +08:00
|
|
|
"module": "ESNext",
|
2020-07-22 00:35:23 +08:00
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": true,
|
2020-07-22 00:37:53 +08:00
|
|
|
"moduleResolution": "node",
|
2020-08-10 12:58:04 +08:00
|
|
|
"esModuleInterop": true,
|
2020-09-15 12:28:12 +08:00
|
|
|
"jsx": "preserve",
|
2020-07-22 00:35:23 +08:00
|
|
|
"noLib": false,
|
|
|
|
"target": "es6",
|
|
|
|
"sourceMap": true,
|
|
|
|
"lib": [
|
2020-09-30 18:21:47 +08:00
|
|
|
"ESNext", "DOM"
|
2020-08-18 11:58:34 +08:00
|
|
|
],
|
|
|
|
"allowSyntheticDefaultImports": true
|
2020-07-22 00:35:23 +08:00
|
|
|
},
|
|
|
|
"exclude": [
|
2020-10-27 17:31:08 +08:00
|
|
|
"node_modules"
|
2020-07-22 00:35:23 +08:00
|
|
|
]
|
|
|
|
}
|