You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
542 B
25 lines
542 B
{ |
|
"compilerOptions": { |
|
"module": "esnext", |
|
"target": "es2015", |
|
"lib": ["es2015", "es2017", "dom"], |
|
"noImplicitAny": false, |
|
"moduleResolution": "node", |
|
"sourceMap": true, |
|
"baseUrl": ".", |
|
"allowSyntheticDefaultImports": true, |
|
"experimentalDecorators": true, |
|
"emitDecoratorMetadata":true, |
|
"esModuleInterop": true, |
|
"resolveJsonModule": true |
|
}, |
|
"files": [ |
|
"node_modules/miniprogram-api-typings/index.d.ts" |
|
], |
|
"include": [ |
|
"src/**/*.ts" |
|
], |
|
"exclude": [ |
|
"node_modules" |
|
] |
|
}
|
|
|