版博士V2.0程序
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.
 
 
 
 

29 lines
597 B

  1. {
  2. "compilerOptions": {
  3. "target": "ES3",
  4. "noImplicitAny": true,
  5. "strictBindCallApply": true,
  6. "removeComments": true,
  7. "sourceMap": false,
  8. "noImplicitThis": true,
  9. // https://github.com/ezolenko/rollup-plugin-typescript2/issues/12#issuecomment-536173372
  10. "moduleResolution": "Node",
  11. "declaration": true,
  12. "declarationMap": false,
  13. // Compile to lib
  14. "rootDir": "src",
  15. "importHelpers": true,
  16. "pretty": true
  17. },
  18. "include": [
  19. "src/**/*.ts"
  20. ],
  21. "exclude": [
  22. ]
  23. }