tsconfig.json 859 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "target": "es6",
  5. "module": "esnext",
  6. "moduleResolution": "node",
  7. "lib": ["dom", "esnext"],
  8. "declaration": false,
  9. "allowSyntheticDefaultImports": true,
  10. "esModuleInterop": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "importHelpers": true,
  13. "noEmitHelpers": true,
  14. "removeComments": false,
  15. "inlineSourceMap": false,
  16. "sourceMap": true,
  17. "noEmitOnError": false,
  18. "emitDecoratorMetadata": false,
  19. "experimentalDecorators": true,
  20. "noImplicitReturns": true,
  21. "noImplicitThis": true,
  22. "noImplicitUseStrict": false,
  23. "noImplicitAny": false,
  24. "strictNullChecks": false,
  25. "pretty": true,
  26. "strict": false,
  27. "skipLibCheck": true,
  28. "rootDir": "./src",
  29. "typeRoots": ["./node_modules/@types"]
  30. },
  31. "exclude": ["node_modules"]
  32. }