2019-03-30 10:53:32 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": true,
|
|
|
|
"module": "commonjs",
|
2020-06-02 14:29:33 +08:00
|
|
|
"target": "es2015",
|
|
|
|
"esModuleInterop": true,
|
2019-03-30 10:53:32 +08:00
|
|
|
"moduleResolution": "node",
|
2020-06-02 14:29:33 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"skipLibCheck": true,
|
2020-06-01 14:31:19 +08:00
|
|
|
"downlevelIteration": true,
|
2020-06-02 14:29:33 +08:00
|
|
|
"sourceMap": false,
|
2019-03-30 10:53:32 +08:00
|
|
|
"types": ["node"],
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"node_modules/*",
|
|
|
|
"typings/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"outDir": "dist"
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|