2020-07-09 20:51:47 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"sourceMap": false,
|
2020-09-14 16:43:55 +08:00
|
|
|
"target": "es2015",
|
2020-07-09 20:51:47 +08:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2020-07-25 22:39:19 +08:00
|
|
|
"allowJs": true,
|
2020-07-09 20:51:47 +08:00
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"lib": ["esnext", "dom"],
|
2020-09-14 16:43:55 +08:00
|
|
|
"types": ["node"]
|
2020-07-09 20:51:47 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"global.d.ts"
|
|
|
|
]
|
2020-10-12 13:49:27 +08:00
|
|
|
}
|